mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 05:45:38 +00:00
- 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:
parent
cce9914a13
commit
8df56ddcbf
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue