Subversion Repositories Kolibri OS

Rev

Rev 5123 | Rev 5132 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5123 clevermous 1
CFLAGS = "-Os -fno-ident -fomit-frame-pointer -fno-stack-check -fno-stack-protector -mno-stack-arg-probe -mpreferred-stack-boundary=2 -fno-exceptions -fno-asynchronous-unwind-tables -ffast-math -mno-ms-bitfields -march=pentium-mmx"
2
CFLAGS_c = "" -- extra flags for *.c
3
CFLAGS_cpp = " -fno-rtti" -- extra flags for *.cpp
5098 clevermous 4
LDFLAGS = "-nostdlib -n --file-alignment=16 --section-alignment=16"
5
INCLUDES = ""
6
LIBS = ""
7
LIBDEPS = {}
8
OBJS = {}
9
 
10
function compile_gcc(input, output)
11
  if not output then output = '%B.o' end
12
  tup.append_table(OBJS,
5123 clevermous 13
    tup.foreach_rule(input, "kos32-gcc -c " .. CFLAGS .. "$(CFLAGS_%e) " .. INCLUDES .. " -o %o %f", output)
5098 clevermous 14
  )
15
end
16
 
17
function link_gcc(input, output)
18
  if not output then input,output = OBJS,input end
5131 clevermous 19
  if STARTUP then
20
    table.insert(LIBDEPS, STARTUP)
21
    LDFLAGS = LDFLAGS .. " " .. STARTUP
22
  end
5098 clevermous 23
  if tup.getconfig("HELPERDIR") == "" and #LIBDEPS then
24
    if type(input) == "string" then input = {input} end
25
    if not input.extra_inputs then input.extra_inputs = {} end
26
    tup.append_table(input.extra_inputs, LIBDEPS)
27
  end
28
 
29
  if type(output) == "string" then output = {output} end
30
  if not output.extra_outputs then output.extra_outputs = {} end
31
  table.insert(output.extra_outputs, output[1] .. ".map")
32
 
33
  tup.rule(input,
34
    "kos32-ld " .. LDFLAGS .. " -o %o %f -Map %o.map " .. LIBS .. " && kos32-objcopy %o -O binary " .. tup.getconfig("KPACK_CMD"),
35
    output)
36
end