mirror of
https://github.com/wiiu-env/CustomRPXLoader.git
synced 2024-11-13 22:15:06 +01:00
Adapt to devkitPPC r37
This commit is contained in:
parent
a941429f88
commit
2be0d57e40
6
Makefile
6
Makefile
@ -42,10 +42,8 @@ INCLUDES := src
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
# options for code generation
|
# options for code generation
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
CFLAGS := -std=gnu11 -mcpu=750 -meabi -mhard-float -ffast-math \
|
CFLAGS := -std=c2x -g -Wall -O2 -ffunction-sections -DESPRESSO -mcpu=750 -meabi -mhard-float $(INCLUDE)
|
||||||
-O2 -Wall -Wextra -Wno-unused-parameter -Wno-strict-aliasing $(INCLUDE)
|
CXXFLAGS := -std=c++20 -g -Wall -O2 -ffunction-sections -DESPRESSO -mcpu=750 -meabi -mhard-float $(INCLUDE)
|
||||||
CXXFLAGS := -std=gnu++11 -mcpu=750 -meabi -mhard-float -ffast-math \
|
|
||||||
-O2 -Wall -Wextra -Wno-unused-parameter -Wno-strict-aliasing $(INCLUDE)
|
|
||||||
ASFLAGS := -mregnames
|
ASFLAGS := -mregnames
|
||||||
LDFLAGS := -nostartfiles -Wl,--gc-sections,--allow-multiple-definition
|
LDFLAGS := -nostartfiles -Wl,--gc-sections,--allow-multiple-definition
|
||||||
|
|
||||||
|
@ -53,6 +53,10 @@ IMPORT(OSGetSemaphoreCount);
|
|||||||
IMPORT(OSSignalSemaphore);
|
IMPORT(OSSignalSemaphore);
|
||||||
IMPORT(OSWaitSemaphore);
|
IMPORT(OSWaitSemaphore);
|
||||||
IMPORT(OSTryWaitSemaphore);
|
IMPORT(OSTryWaitSemaphore);
|
||||||
|
IMPORT(OSCompareAndSwapAtomicEx);
|
||||||
|
IMPORT(OSCompareAndSwapAtomic);
|
||||||
|
IMPORT(OSGetThreadSpecific);
|
||||||
|
IMPORT(OSSetThreadSpecific);
|
||||||
|
|
||||||
IMPORT(exit);
|
IMPORT(exit);
|
||||||
IMPORT(_Exit);
|
IMPORT(_Exit);
|
||||||
|
Loading…
Reference in New Issue
Block a user