newlib: fix autobuild

git-svn-id: svn://kolibrios.org@7170 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge) 2018-03-04 01:37:55 +00:00
parent 525630e56b
commit 7d178cae81

View File

@ -21,17 +21,20 @@ if TOOLCHAIN_LIBPATH == "" then
end
end
LIBPATH = "-L$(SDK_DIR)/lib"
STATIC_SRCS = {"crt/start.S", "crt/crt2.c", "crt/exit.S"}
STATIC_SRCS = {"crt/start.S", "crt/crt1.c", "crt/crt2.c", "crt/exit.S"}
LIBDLL_SRCS = {"crt/dllstart.c", "crt/exit.S", "crt/pseudo-reloc.c", "crt/setjmp.S"}
LIBCDLL_SRCS = {
"crt/crtdll.c",
"crt/crt2.c",
"crt/pseudo-reloc.c",
"crt/exit.S"
"crt/exit.S",
"pe/loader.c"
}
CORE_SRCS = {
"argz/buf_findstr.c",
"argz/envz_get.c",
"crt/console.asm",
"crt/gthr-kos32.c",
"crt/thread.S",
"crt/setjmp.S",
"crt/cpu_features.c",