aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-08 01:49:26 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-08 01:49:26 +0200
commitce0a906e96afc33589743f9afb5ca28ca959cfed (patch)
treee3c204b0854b31b030f361393157357c54ed10b1
parent93e6bb1bf6b12eaf3c07eb1b2b702aa1e95be48a (diff)
Use -march and -mtune on Darwin
-rw-r--r--make.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/make.c b/make.c
index 306c4b7..28032d0 100644
--- a/make.c
+++ b/make.c
@@ -38,10 +38,7 @@ static char *cflags_dbg[] = {
};
static char *cflags_rls[] = {
- "-DNDEBUG=1", "-flto", "-O3",
-#ifndef __APPLE__
- "-march=native", "-mtune=native",
-#endif
+ "-DNDEBUG=1", "-flto", "-march=native", "-mtune=native", "-O3",
};
static char *argv0;