diff options
Diffstat (limited to '.build')
| -rw-r--r-- | .build | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -1,10 +1,6 @@ -global asm -asm = Vec( - "asm", - "/usr/bin/nasm", - lambda o, i, ea: "-f elf64 %s -o %s %s" % (i, o, ea), - lambda i: (i.name + ".o"), - desc=lambda o, i, ea: "ASM %s" % (o) -) +global cc +cc = System.c_compiler() +global ld +ld = System.c_linker() subdir("test")
\ No newline at end of file |
