summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-05-26 15:49:57 +0000
committermidipix <writeonce@midipix.org>2021-05-26 16:48:02 +0000
commita1edb965262ee9faa6c2223955cf93a24198071d (patch)
tree53618a58f8725128997f182a1bb5087ac7c79354 /sofort
parent83c751cc6952723384b42b725f9a71e160272587 (diff)
downloadapimagic-a1edb965262ee9faa6c2223955cf93a24198071d.tar.bz2
apimagic-a1edb965262ee9faa6c2223955cf93a24198071d.tar.xz
build system: binary format detection: send errors to config.log.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/ccenv/ccenv.sh3
1 files changed, 2 insertions, 1 deletions
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