diff options
author | Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com> | 2018-02-21 17:55:52 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-02-21 21:29:25 +0100 |
commit | 937a2cf5a9b6e217692a5bc26ca2b541d97a2cb5 (patch) | |
tree | 88092f65720346b58de339a4af498beab061c138 | |
parent | 8343069e2c3cc79ad14600816a772fcd7592e291 (diff) | |
download | buildroot-937a2cf5a9b6e217692a5bc26ca2b541d97a2cb5.tar.gz buildroot-937a2cf5a9b6e217692a5bc26ca2b541d97a2cb5.zip |
package/gpsd: disable profiling support on ARC
With the currently used ARC glibc version the profiling build fails with
linking error to __mcount. The ARC glibc version arc-2018.03-eng007+
fixes this, therefore when glibc is bumped, this restriction can be
removed.
Fixes:
http://autobuild.buildroot.net/results/88870f5bf4aff557d8eac4e1cc5d3e397e607af0/
Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gpsd/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in index d9ab7b7dba..849d22ffa7 100644 --- a/package/gpsd/Config.in +++ b/package/gpsd/Config.in @@ -38,6 +38,8 @@ config BR2_PACKAGE_GPSD_PROFILING bool "profiling support" depends on BR2_TOOLCHAIN_USES_GLIBC depends on !BR2_aarch64 + # Needs glibc for ARC arc-2018.03-eng007+ for correct __mcount linking + depends on !BR2_arc comment "profiling support not available with uClibc-based toolchain" depends on !BR2_TOOLCHAIN_USES_GLIBC |