mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
Update Makefile.common to work with devkitPPC r27. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4684 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0f62db298c
commit
eb8645b6ea
1 changed files with 12 additions and 6 deletions
|
@ -429,11 +429,17 @@ ifneq (0,$(RELEASE))
|
|||
ifeq (0,$(CLANG))
|
||||
COMMONFLAGS += -funswitch-loops
|
||||
ifeq (1,$(strip $(shell expr $(GCC_MAJOR) \< 4)))
|
||||
LTO=0
|
||||
override LTO=0
|
||||
endif
|
||||
ifeq (1,$(strip $(shell expr $(GCC_MAJOR) = 4)))
|
||||
ifeq (1,$(strip $(shell expr $(GCC_MINOR) \< 6)))
|
||||
LTO=0
|
||||
ifeq ($(PLATFORM),WII)
|
||||
ifeq (1,$(strip $(shell expr $(GCC_MINOR) \< 8)))
|
||||
override LTO=0
|
||||
endif
|
||||
else
|
||||
ifeq (1,$(strip $(shell expr $(GCC_MINOR) \< 6)))
|
||||
override LTO=0
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
@ -968,9 +974,9 @@ endif
|
|||
ifneq ($(PLATFORM),WINDOWS)
|
||||
ifneq ($(PLATFORM),WII)
|
||||
LIBS+= -ldl
|
||||
endif
|
||||
ifneq ($(PLATFORM),DARWIN)
|
||||
LIBS+= -pthread
|
||||
ifneq ($(PLATFORM),DARWIN)
|
||||
LIBS+= -pthread
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue