diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-08 01:49:26 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-08 01:49:26 +0200 |
commit | ce0a906e96afc33589743f9afb5ca28ca959cfed (patch) | |
tree | e3c204b0854b31b030f361393157357c54ed10b1 | |
parent | 93e6bb1bf6b12eaf3c07eb1b2b702aa1e95be48a (diff) |
Use -march and -mtune on Darwin
-rw-r--r-- | make.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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; |