diff options
author | Moonchild <moonchild@palemoon.org> | 2021-10-16 11:48:00 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-01 15:28:15 +0200 |
commit | 426a9755d99a9fc818f151d407cbc9bdcd434a5f (patch) | |
tree | dd88a166e589e344e1cd7be7eb24488552790405 /config | |
parent | c14bb310ce237c375a5cf4a89e7689ddfbf016c5 (diff) | |
download | uxp-426a9755d99a9fc818f151d407cbc9bdcd434a5f.tar.gz |
Issue #1053 - Remove Android systrace, more build system removals.
Also updates more comments.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.mk | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/config/config.mk b/config/config.mk index 6208d124e1..b71e65fc35 100644 --- a/config/config.mk +++ b/config/config.mk @@ -550,14 +550,6 @@ ifeq (,$(filter $(OS_TARGET),WINNT Darwin)) CHECK_TEXTREL = @$(TOOLCHAIN_PREFIX)readelf -d $(1) | grep TEXTREL > /dev/null && echo 'TEST-UNEXPECTED-FAIL | check_textrel | We do not want text relocations in libraries and programs' || true endif -ifeq ($(MOZ_WIDGET_TOOLKIT),android) -# While this is very unlikely (libc being added by the compiler at the end -# of the linker command line), if libmozglue.so ends up after libc.so, all -# hell breaks loose, so better safe than sorry, and check it's actually the -# case. -CHECK_MOZGLUE_ORDER = @$(TOOLCHAIN_PREFIX)readelf -d $(1) | grep NEEDED | awk '{ libs[$$NF] = ++n } END { if (libs["[libmozglue.so]"] && libs["[libc.so]"] < libs["[libmozglue.so]"]) { print "libmozglue.so must be linked before libc.so"; exit 1 } }' -endif - define CHECK_BINARY $(call CHECK_GLIBC,$(1)) $(call CHECK_STDCXX,$(1)) |