Subversion Repositories Kolibri OS

Rev

Rev 5098 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5098 Rev 5123
Line 1... Line 1...
1
if tup.getconfig('NO_GCC') ~= "" then return end
1
if tup.getconfig('NO_GCC') ~= "" then return end
2
CFLAGS="-D_USE_LIBM_MATH_H -Os -fno-stack-check -fno-stack-protector -mno-stack-arg-probe -fno-ident -fomit-frame-pointer -fno-asynchronous-unwind-tables -mpreferred-stack-boundary=2"
2
CFLAGS="-D_USE_LIBM_MATH_H -Os -fno-stack-check -fno-stack-protector -mno-stack-arg-probe -fno-ident -fomit-frame-pointer -fno-asynchronous-unwind-tables -mpreferred-stack-boundary=2 -march=pentium-mmx"
3
OBJS = tup.foreach_rule({"*.c", extra_inputs = {"../../config.h"}},
3
OBJS = tup.foreach_rule({"*.c", extra_inputs = {"../../config.h"}},
4
  'kos32-gcc -c -I../../include -D__DEV_CONFIG_H=\\"../../config.h\\" ' .. CFLAGS .. ' -o %o %f',
4
  'kos32-gcc -c -I../../include -D__DEV_CONFIG_H=\\"../../config.h\\" ' .. CFLAGS .. ' -o %o %f',
5
  "%B.o")
5
  "%B.o")
6
OBJS += tup.foreach_rule({"*.s", extra_inputs = {"../../config.h"}},
6
OBJS += tup.foreach_rule({"*.s", extra_inputs = {"../../config.h"}},
7
  'kos32-cpp -I../../include -D__DEV_CONFIG_H=\\"../../config.h\\" %f | kos32-as -o %o',
7
  'kos32-cpp -I../../include -D__DEV_CONFIG_H=\\"../../config.h\\" %f | kos32-as -o %o',