mirror of
https://github.com/ZDoom/acc.git
synced 2025-02-07 06:11:02 +00:00
- Default to -O2 instead of -Os with GCC, because the GCC 4.7.2 bundled with current Ubuntus generates invalid code with -Os.
SVN r4183 (trunk)
This commit is contained in:
parent
67e89c4107
commit
df8996df4f
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -16,7 +16,7 @@ EXENAME = acc
|
|||
endif
|
||||
endif
|
||||
|
||||
CFLAGS ?= -Os -Wall -W -fomit-frame-pointer
|
||||
CFLAGS ?= -O2 -Wall -W
|
||||
LDFLAGS ?= -s
|
||||
VERNUM = 153
|
||||
|
||||
|
|
Loading…
Reference in a new issue