mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
Build: Put C and M at the front of $LIB_DEPS to build first
This commit is contained in:
parent
68d721f973
commit
2d7259e0a0
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ else
|
|||
LINK = $(TOOLCHAIN_PATH)/i686-pc-serenity-ld
|
||||
RANLIB = $(TOOLCHAIN_PATH)/i686-pc-serenity-ranlib
|
||||
AR = $(TOOLCHAIN_PATH)/i686-pc-serenity-ar
|
||||
|
||||
|
||||
DEFINES += -DDEBUG
|
||||
|
||||
INCLUDE_FLAGS += \
|
||||
|
@ -51,7 +51,7 @@ else
|
|||
DEFINES += -DKERNEL
|
||||
else
|
||||
# everything else gets -lc -lm
|
||||
LIB_DEPS += C M
|
||||
LIB_DEPS := C M $(LIB_DEPS)
|
||||
endif
|
||||
|
||||
# turn "LIB_DEPS=C Core Thread" into "-lc -lcore -lthread -L.../LibC ..."
|
||||
|
|
Loading…
Add table
Reference in a new issue