mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-21 21:35: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
|
||||
#
|
||||
NET_BOARD =
|
||||
NET_BOARD = 1
|
||||
ifneq ($(filter $(strip $(NET_BOARD)),0 1),$(strip $(NET_BOARD)))
|
||||
override NET_BOARD =
|
||||
endif
|
||||
|
|
|
@ -70,7 +70,7 @@ endif
|
|||
# Compiler options
|
||||
#
|
||||
ARCH =
|
||||
OPT = -Ofast
|
||||
OPT = -O3
|
||||
WARN = -Wall
|
||||
CSTD = -std=iso9899:2011
|
||||
CXXSTD = -std=c++14
|
||||
|
|
Loading…
Reference in a new issue