Removed -march=native from Makefile

This commit is contained in:
Jarcode
2018-10-08 12:43:18 -07:00
parent 1a1cbc9cc8
commit 7bb7913bd3
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ ifeq ($(BUILD),debug)
STRIP_CMD = $(info Skipping `strip` for debug builds)
# ASAN = -lasan
else
CFLAGS_BUILD = -O2 -march=native -Wstringop-overflow=0
CFLAGS_BUILD = -O2 -Wstringop-overflow=0
GLAD_GEN = c
STRIP_CMD = strip --strip-all glava
endif