From 5d9f6f3245847f9f3fda34e807366e9f1dfe39f1 Mon Sep 17 00:00:00 2001 From: emma Date: Wed, 27 Dec 2023 16:55:50 -0700 Subject: [PATCH] GNUmakefile: fixed fop(1) segfault --- GNUmakefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 35da1d9..64b433f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -20,9 +20,8 @@ CC=cc CFLAGS=-O3 -Lbuild/lib -idirafter include RUSTC=rustc +nightly -RUSTCFLAGS=-Zlocation-detail=none -Copt-level=z -Ccodegen-units=1 \ - -Cpanic=abort -Clto=y -Cstrip=symbols -Ctarget-cpu=native \ - -Clink-args=-Wl,-n,-N,--no-dynamic-linker,--no-pie,--build-id=none +RUSTCFLAGS=-Zlocation-detail=none -Copt-level=z -Ccodegen-units=1 -Cpanic=abort + -Clto=y -Cstrip=symbols -Ctarget-cpu=native ifeq ($(CC), gcc) CFLAGS=-O3 -s -Wl,-z,noseparate-code,-z,nosectionheader -flto -Lbuild/lib \