From 5e1749ca439e641e6389ed560a90350018d3c11d Mon Sep 17 00:00:00 2001 From: emma Date: Tue, 16 Jan 2024 16:47:26 -0700 Subject: [PATCH] configure: now you can do multiple compilers! --- configure | 44 ++++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/configure b/configure index eb1c8ae..c710afb 100755 --- a/configure +++ b/configure @@ -14,26 +14,30 @@ RUSTFLAGS='-Copt-level=z -Ccodegen-units=1 -Cpanic=abort -Clto=y \ -Cstrip=symbols -Ctarget-cpu=native \ --extern sysexits=build/o/libsysexits.rlib' -case "$@" in - clang) - CFLAGS="$CFLAGS -Wall" - ;; - clean) - rm *.mk || true - exit 0 - ;; - gcc) - CFLAGS="$CFLAGS -s -Wl,-z,noseparate-code,-z,nosectionheader -flto" - ;; - 'rustc +nightly') - RUSTFLAGS="+nightly -Zlocation-detail=none $RUSTFLAGS" - ;; - '') ;; - *) - printf 'Usage: %s [compiler]\n' "$0" - exit 64 # sysexits.h(3) EX_USAGE - ;; -esac +if [ "$1" = "clean" ]; then + rm *.mk || true + exit 0 +fi + +while test -n "$1"; do + case "$1" in + clang) + CFLAGS="$CFLAGS -Wall" + ;; + gcc) + CFLAGS="$CFLAGS -s -Wl,-z,noseparate-code,-z,nosectionheader -flto" + ;; + 'rustc +nightly') + RUSTFLAGS="+nightly -Zlocation-detail=none $RUSTFLAGS" + ;; + *) + printf 'Usage: %s [clean | compiler]\n' "$0" + exit 64 # sysexits.h(3) EX_USAGE + ;; + esac + + shift +done printf 'CFLAGS=%s\n' "$CFLAGS" >cc.mk printf 'RUSTFLAGS=%s\n' "$RUSTFLAGS" >rustc.mk