From cd37c750197bed866d03475c04abe295deb17d00 Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 26 May 2021 15:49:57 +0000 Subject: build system: binary format detection: send errors to config.log. --- sofort/ccenv/ccenv.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index de7926e..857a202 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -764,7 +764,7 @@ ccenv_create_framework_executable() printf 'int main(void){return 0;}' \ | $ccenv_cc -xc - \ -o $ccenv_image \ - 2>/dev/null \ + 2>&3 \ || return 1 return 0 @@ -788,6 +788,7 @@ ccenv_create_freestanding_executable() -ffreestanding \ -nostdlib -nostartfiles \ -o $ccenv_image \ + 2>&3 \ || return 1 ccenv_freestd=yes -- cgit v1.2.3