[Buildroot] [git commit] gpsd: do not allow profiling support on AArch64

Peter Korsgaard peter at korsgaard.com
Thu Nov 28 14:14:58 UTC 2013


commit: http://git.buildroot.net/buildroot/commit/?id=b0a72f02adbf50f306d57045300d245fe5a1a800
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

The profiling support is not available on AArch64, causing build
failures such as:

  http://autobuild.buildroot.net/results/724f8646e1c2c28cf187f2313244d1e3e61b4c25/

According to Will Newton, function profiling will only be added in the
next version of the AArch64 Linaro toolchain. This indicates it is a
rather new feature in AArch64, so for the moment, just disallow
profiling on AArch64. We can revise this later, when this feature has
been made available in Linaro toolchains, and official gcc releases
(for internal toolchain support).

Signed-off-by: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/gpsd/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in
index 5b007d7..2fd97d0 100644
--- a/package/gpsd/Config.in
+++ b/package/gpsd/Config.in
@@ -34,6 +34,7 @@ config BR2_PACKAGE_GPSD_OLDSTYLE
 config BR2_PACKAGE_GPSD_PROFILING
 	bool "profiling support"
 	depends on BR2_TOOLCHAIN_USES_GLIBC
+	depends on !BR2_aarch64
 
 comment "profiling support not available with uClibc-based toolchain"
 	depends on !BR2_TOOLCHAIN_USES_GLIBC


More information about the buildroot mailing list