Build: Put C and M at the front of $LIB_DEPS to build first

This commit is contained in:
joshua stein 2019-12-27 21:53:57 -06:00 committed by Andreas Kling
parent 68d721f973
commit 2d7259e0a0

View file

@ -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 ..."