mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-12 21:34:47 +02:00
18 lines
470 B
Lua
18 lines
470 B
Lua
cflags{
|
|
'-std=c99', '-Wall', '-Wextra', '-Wpedantic',
|
|
'-Wno-format-overflow', '-Wno-format-truncation', '-Wno-maybe-uninitialized',
|
|
'-I $dir',
|
|
}
|
|
|
|
exe('qbe', [[
|
|
main.c util.c parse.c abi.c cfg.c mem.c ssa.c alias.c load.c
|
|
copy.c fold.c gvn.c gcm.c simpl.c ifopt.c live.c spill.c rega.c
|
|
emit.c
|
|
amd64/(targ.c sysv.c isel.c emit.c winabi.c)
|
|
arm64/(targ.c abi.c isel.c emit.c)
|
|
rv64/(targ.c abi.c isel.c emit.c)
|
|
]])
|
|
file('bin/qbe', '755', '$outdir/qbe')
|
|
|
|
fetch 'git'
|