From caff26209e3232f7eb6608b3b609ffa761689b0f Mon Sep 17 00:00:00 2001 From: emma Date: Fri, 19 Jan 2024 20:31:34 -0700 Subject: [PATCH] configure: fixed lack of rustc compiler argument parsing --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index c710afb..e7656d9 100755 --- a/configure +++ b/configure @@ -27,6 +27,7 @@ while test -n "$1"; do gcc) CFLAGS="$CFLAGS -s -Wl,-z,noseparate-code,-z,nosectionheader -flto" ;; + rustc) ;; 'rustc +nightly') RUSTFLAGS="+nightly -Zlocation-detail=none $RUSTFLAGS" ;;