Subversion Repositories Kolibri OS

Rev

Rev 5098 | Go to most recent revision | 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"
5
LDFLAGS = LDFLAGS .. string.gsub(" -T$/include/scripts/menuetos_app_v01.ld -L$/lib", "%$", MELIBC)
6
tup.append_table(LIBDEPS, {MELIBC .. "/", MELIBC .. "/", MELIBC .. "/"})
5098 clevermous 7
LIBS = LIBS .. " -lcpp -lm -lc"
5131 clevermous 8
 
9
function use_dynamic_stack()
10
  STARTUP = MELIBC .. "/stub/crt0_dynstack.o"
11
end