Mirror von
https://github.com/tkuschel/bees.git
synchronisiert 2026-05-08 04:59:37 +02:00
649ae5bb40
Interesting things happen when blindly swapping the release-build CCFLAGS with the debug-build commented-out CCFLAGS. None of these things that happen are good. Signed-off-by: Zygo Blaxell <bees@furryterror.org>
5 Zeilen
267 B
Plaintext
5 Zeilen
267 B
Plaintext
CCFLAGS = -Wall -Wextra -Werror -O3 -march=native -I../include -ggdb -fpic -D_FILE_OFFSET_BITS=64
|
|
# CCFLAGS = -Wall -Wextra -Werror -O0 -I../include -ggdb -fpic -D_FILE_OFFSET_BITS=64
|
|
CFLAGS = $(CCFLAGS) -std=c99
|
|
CXXFLAGS = $(CCFLAGS) -std=c++11 -Wold-style-cast
|