6 lines
180 B
Makefile
6 lines
180 B
Makefile
|
|
LD := ld.lld
|
||
|
|
CC := clang
|
||
|
|
|
||
|
|
CFLAGS := -fuse-ld=$(LD) -target x86_64-linux-elf -nostdlib -nostdinc -ffreestanding -Wl,-nostdlib -Wno-unused-command-line-argument
|
||
|
|
LDFLAGS := -nostdlib
|