From 5ccf2381672cee95c237d5add7ac9fb707231f6c Mon Sep 17 00:00:00 2001 From: PulkoMandy Date: Sun, 22 Oct 2023 14:43:15 +0200 Subject: Remove -mcpu=native To make sure no specific instructions are used that wouldn't work on some user's machine diff --git a/makefile.MacOS b/makefile.MacOS index cbd5787..c62822f 100644 --- a/makefile.MacOS +++ b/makefile.MacOS @@ -1,7 +1,7 @@ CC=gcc EXEC=rasm -CFLAGS=-lm -mcpu=native -o $(EXEC) -w +CFLAGS=-lm -o $(EXEC) -w CFLAGS_OPT = $(CFLAGS) -O2 CFLAGS_DBG = $(CFLAGS) -g -pthread -DRDD -- 2.42.0