forked from KolibriOS/kolibrios
7481a0ec95
Gears: newlib git-svn-id: svn://kolibrios.org@8528 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
415 B
Lua
12 lines
415 B
Lua
if tup.getconfig("NO_GCC") ~= "" then return end
|
|
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
|
|
tup.include(HELPERDIR .. "/use_gcc.lua")
|
|
tup.include(HELPERDIR .. "/use_newlib.lua")
|
|
tup.include(HELPERDIR .. "/use_tinygl.lua")
|
|
|
|
LIBS = "-lstdc++ -lsupc++ " .. LIBS
|
|
LDFLAGS = LDFLAGS .. " --subsystem native"
|
|
|
|
compile_gcc{"fps.cpp", "main.cpp"}
|
|
link_gcc("gears")
|