From 4dcfa21e6a530cd12234c8898a1f35a8ad9c9d23 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 15 Jun 2015 12:26:45 -0700 Subject: [PATCH] xcompile: Don't print error messages Don't print error messages if an unpatched clang is detected. Change-Id: If77722a40a59e99f01d121a0c43999f05f3c4421 Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/10554 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Patrick Georgi --- util/xcompile/xcompile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`" }