mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
windows: use target-specfic flags for gcc too (-m32/-m64). hmph..
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1299 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
f22eed7f57
commit
5af28b2121
2 changed files with 4 additions and 4 deletions
|
@ -48,9 +48,9 @@ STRIP = strip
|
|||
#CPUFLAGS= -mtune=i686
|
||||
#CPUFLAGS= -march=pentium4
|
||||
CPUFLAGS=
|
||||
LDFLAGS =
|
||||
LDFLAGS = -m32 -mwindows
|
||||
DFLAGS ?=
|
||||
CFLAGS ?= -Wall -Wno-trigraphs
|
||||
CFLAGS ?= -m32 -Wall -Wno-trigraphs
|
||||
CFLAGS += $(CPUFLAGS)
|
||||
|
||||
ifneq ($(DEBUG),0)
|
||||
|
|
|
@ -46,9 +46,9 @@ WINDRES = windres
|
|||
STRIP = strip
|
||||
|
||||
CPUFLAGS=
|
||||
LDFLAGS =
|
||||
LDFLAGS = -m64 -mwindows
|
||||
DFLAGS ?=
|
||||
CFLAGS ?= -Wall -Wno-trigraphs
|
||||
CFLAGS ?= -m64 -Wall -Wno-trigraphs
|
||||
CFLAGS += $(CPUFLAGS)
|
||||
|
||||
ifneq ($(DEBUG),0)
|
||||
|
|
Loading…
Reference in a new issue