1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-08 04:59:37 +02:00

Add native compiler optimization's to compiler flags

Signed-off-by: Paul Jones <paul@pauljones.id.au>
Dieser Commit ist enthalten in:
Paul Jones
2016-12-13 12:53:29 +11:00
Ursprung 334f5f83ee
Commit d7c065e17e
+1 -1
Datei anzeigen
@@ -1,4 +1,4 @@
CCFLAGS = -Wall -Wextra -Werror -O3 -I../include -ggdb -fpic
CCFLAGS = -Wall -Wextra -Werror -O3 -march=native -I../include -ggdb -fpic
# CCFLAGS = -Wall -Wextra -Werror -O0 -I../include -ggdb -fpic
CFLAGS = $(CCFLAGS) -std=c99
CXXFLAGS = $(CCFLAGS) -std=c++11 -Wold-style-cast