diff options
| author | Mikkel Hjortshøj <me@thisdrunkdane.io> | 2020-11-08 01:23:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-08 01:23:19 +0100 |
| commit | 817db70bde5ff355d7f02ca5cc6ae1bfd14d9cb1 (patch) | |
| tree | 99da9a78f6352c13fda5c3a67128f95b160c49e8 | |
| parent | ef27528ace7e3a23d7a45be761fa1cb0d2af1a5d (diff) | |
[CI] Remove -march for makefile nightly
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ release: $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -O3 -march=native $(LDFLAGS) -o odin nightly: - $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -DNIGHTLY -O3 -march=native $(LDFLAGS) -o odin + $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -DNIGHTLY -O3 $(LDFLAGS) -o odin |