diff options
Diffstat (limited to 'util')
-rwxr-xr-x | util/xcompile/xcompile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 07bcde7a6d..7363b196e6 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -166,7 +166,7 @@ detect_special_flags() { detect_compiler_runtime() { test -z "$CLANG" || \ - CC_RT_CLANG="`${CLANG} ${CFLAGS} -print-librt-file-name`" + CC_RT_CLANG="`${CLANG} ${CFLAGS} -print-librt-file-name 2>/dev/null`" test -z "$GCC" || \ CC_RT_GCC="`${GCC} ${CFLAGS} -print-libgcc-file-name`" } |