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 <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/10554 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
cd5cdd3ba4
commit
4dcfa21e6a
|
@ -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`"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue