mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
actually build 64bit binaries on ppc64
This commit is contained in:
parent
e955f142b8
commit
66b31c94b9
1 changed files with 5 additions and 0 deletions
5
Makefile
5
Makefile
|
@ -257,6 +257,11 @@ ifeq ($(PLATFORM),linux)
|
|||
# linux32 make ...
|
||||
BASE_CFLAGS += -m32
|
||||
LDFLAGS+=-m32
|
||||
else
|
||||
ifeq ($(ARCH),ppc64)
|
||||
BASE_CFLAGS += -m64
|
||||
LDFLAGS += -m64
|
||||
endif
|
||||
endif
|
||||
|
||||
DEBUG_CFLAGS = $(BASE_CFLAGS) -g -O0
|
||||
|
|
Loading…
Reference in a new issue