[Buildroot] [PATCH 1/2] Disabling trousers package for arc

Lada Trimasova Lada.Trimasova at synopsys.com
Thu Jan 14 11:55:55 UTC 2016


Even though ARC gcc understands "-pie" option and attempts
to generate PIE binaries as of today PIE is not really supported
for user-space applications. Trousers configure scripts don't provide any
options which can disable pie usage. So there is no easy way to prevent
linking with -pie on ARC. The easiest solution is just to make
the trousers package not available on ARC.

Signed-off-by: Lada Trimasova <ltrimas at synopsys.com>
Cc: Alexey Brodkin <abrodkin at synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
Cc: Peter Korsgaard <peter at korsgaard.com>
---
 package/trousers/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/trousers/Config.in b/package/trousers/Config.in
index 6ab74bf..837c69f 100644
--- a/package/trousers/Config.in
+++ b/package/trousers/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_TROUSERS
 	bool "trousers"
 	select BR2_PACKAGE_OPENSSL
 	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
+	depends on !BR2_arc # requires pie
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	# doesn't build properly in static only configurations
 	depends on !BR2_STATIC_LIBS
-- 
2.5.0



More information about the buildroot mailing list