Subversion Repositories Kolibri OS

Rev

Rev 5131 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5098 clevermous 1
MELIBC = tup.getcwd() .. "/develop/libraries/menuetlibc"
2
 
3
INCLUDES = INCLUDES .. " -I" .. MELIBC .. "/include"
5131 clevermous 4
STARTUP = MELIBC .. "/stub/crt0.o"
7112 dunkaist 5
CFLAGS_c = " -fgnu89-inline"
5131 clevermous 6
LDFLAGS = LDFLAGS .. string.gsub(" -T$/include/scripts/menuetos_app_v01.ld -L$/lib", "%$", MELIBC)
7
tup.append_table(LIBDEPS, {MELIBC .. "/", MELIBC .. "/", MELIBC .. "/"})
5098 clevermous 8
LIBS = LIBS .. " -lcpp -lm -lc"
5131 clevermous 9
 
10
function use_dynamic_stack()
11
  STARTUP = MELIBC .. "/stub/crt0_dynstack.o"
12
end