diff options
author | Alexey Neyman <stilor@att.net> | 2018-04-28 09:15:41 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-29 12:06:54 -0700 |
commit | 0f34b0ebf0651fd26fde1646ac1fb4031e0c57a2 (patch) | |
tree | eb9df5834ebbe0cc90811c461cd2091bb9838f4d /scripts | |
parent | 270eb003dc5326d7da0e48aded355467f08f176c (diff) | |
download | crosstool-ng-0f34b0ebf0651fd26fde1646ac1fb4031e0c57a2.tar.gz crosstool-ng-0f34b0ebf0651fd26fde1646ac1fb4031e0c57a2.tar.bz2 crosstool-ng-0f34b0ebf0651fd26fde1646ac1fb4031e0c57a2.zip |
Fix strace 4.21+ on aarch64
... which now defaults to --enable-mpers=yes, which attempts to
invoke aarch64-*-gcc with -m32 and fails.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/debug/500-strace.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/build/debug/500-strace.sh b/scripts/build/debug/500-strace.sh index 305a76c2..480daaad 100644 --- a/scripts/build/debug/500-strace.sh +++ b/scripts/build/debug/500-strace.sh @@ -37,7 +37,8 @@ do_debug_strace_build() "${CT_SRC_DIR}/strace/configure" \ --build=${CT_BUILD} \ --host=${CT_TARGET} \ - --prefix=/usr + --prefix=/usr \ + --enable-mpers=check CT_DoLog EXTRA "Building strace" CT_DoExecLog ALL make |