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
1 changed files with 5 additions and 2 deletions

View File

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