You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
814 B
25 lines
814 B
commit d3bf2f5927d51258a51ac7fde04f4805f8ee294a |
|
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org> |
|
Date: Wed Nov 3 09:19:30 2021 -0300 |
|
|
|
elf: Do not run DSO sorting if tunables is not enabled |
|
|
|
Since the argorithm selection requires tunables. |
|
|
|
Checked on x86_64-linux-gnu with --enable-tunables=no. |
|
|
|
diff --git a/elf/Makefile b/elf/Makefile |
|
index 8dd2b24328113536..02ee834fdaf00a26 100644 |
|
--- a/elf/Makefile |
|
+++ b/elf/Makefile |
|
@@ -483,8 +483,10 @@ include $(objpfx)$(1).generated-makefile |
|
endef |
|
|
|
# Generate from each testcase description file |
|
+ifeq (yes,$(have-tunables)) |
|
$(eval $(call include_dsosort_tests,dso-sort-tests-1.def)) |
|
$(eval $(call include_dsosort_tests,dso-sort-tests-2.def)) |
|
+endif |
|
|
|
check-abi: $(objpfx)check-abi-ld.out |
|
tests-special += $(objpfx)check-abi-ld.out
|
|
|