Add ktcc to autobuild

git-svn-id: svn://kolibrios.org@6829 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Ivan Baravy 2017-01-19 02:34:41 +00:00
parent 56b3fa9987
commit d800abd154
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
if tup.getconfig("NO_GCC") ~= "" or tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_gcc.lua")
tup.include(HELPERDIR .. "/use_newlib.lua")
CFLAGS = "-U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32"
compile_gcc{"tcc.c"}
compile_gcc{"libtcc.c"}
link_gcc("tcc")