- Star Wars Trilogy untextured Death Star surface bug in gcc builds was caused by -Ofast (thanks to rokfpoewrkcpoqwkcp for discovering this). Using -O3 now.

- Net board enabled by default.
This commit is contained in:
SpinDizzy 2020-12-27 13:14:37 +00:00
parent cce9914a13
commit 8df56ddcbf
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ endif
# #
# Enable support for Model3 Net Board emulation # Enable support for Model3 Net Board emulation
# #
NET_BOARD = NET_BOARD = 1
ifneq ($(filter $(strip $(NET_BOARD)),0 1),$(strip $(NET_BOARD))) ifneq ($(filter $(strip $(NET_BOARD)),0 1),$(strip $(NET_BOARD)))
override NET_BOARD = override NET_BOARD =
endif endif

View file

@ -70,7 +70,7 @@ endif
# Compiler options # Compiler options
# #
ARCH = ARCH =
OPT = -Ofast OPT = -O3
WARN = -Wall WARN = -Wall
CSTD = -std=iso9899:2011 CSTD = -std=iso9899:2011
CXXSTD = -std=c++14 CXXSTD = -std=c++14