]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
strace: Disable for MIPS when using a uClibc toolchain
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>
Fri, 12 Sep 2014 10:40:38 +0000 (11:40 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 13 Sep 2014 20:14:04 +0000 (22:14 +0200)
A change introduced in strace-4.9 makes it incompatible with MIPS
architecture when using a uClibc toolchain. This is the failure:

signal.c: In function 'printsiginfo':
signal.c:453:9: error: 'siginfo_t' has no member named 'si_timerid'
      sip->si_timerid, sip->si_overrun);
 ^
signal.c:453:26: error: 'siginfo_t' has no member named 'si_overrun'
      sip->si_timerid, sip->si_overrun);

uClibc needs to be patched in order to fix this problem. In the meantime
we disable strace for MIPS when using a uClibc toolchain.

Fixes:

  http://autobuild.buildroot.net/results/91c/91c0413e755c365332bc15d1d69ab3d6160ae78c/

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/strace/Config.in

index ad8d30816e1f7b749fdb673585fae0a6d51e88a5..bc521e00364a222e74fa68699d12e2f24bf26761 100644 (file)
@@ -1,6 +1,8 @@
 config BR2_PACKAGE_STRACE
        bool "strace"
        depends on !BR2_nios2
+       depends on !((BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) \
+                    && BR2_TOOLCHAIN_USES_UCLIBC)
        depends on BR2_LARGEFILE
        help
          A useful diagnostic, instructional, and debugging tool.
@@ -11,3 +13,7 @@ config BR2_PACKAGE_STRACE
 
 comment "strace needs a toolchain w/ largefile"
        depends on !BR2_LARGEFILE
+
+comment "strace is not supported on MIPS using a uClibc toolchain"
+       depends on (BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) && \
+                  BR2_TOOLCHAIN_USES_UCLIBC