From 1f93a7dfd1f8d5ff7a5c53246c7534fe2332d6f4 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Mon, 11 Dec 2023 02:46:07 +0000 Subject: [PATCH] add audio --- kernel/scripts/tools-support-relr.sh | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/kernel/scripts/tools-support-relr.sh b/kernel/scripts/tools-support-relr.sh index 45e8aa3..cb55878 100755 --- a/kernel/scripts/tools-support-relr.sh +++ b/kernel/scripts/tools-support-relr.sh @@ -7,7 +7,8 @@ cat << "END" | $CC -c -x c - -o $tmp_file.o >/dev/null 2>&1 void *p = &p; END -$LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr -o $tmp_file +$LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr \ + --use-android-relr-tags -o $tmp_file # Despite printing an error message, GNU nm still exits with exit code 0 if it # sees a relr section. So we need to check that nothing is printed to stderr. -- Gitblit v1.6.2