All checks were successful
Build documentation / build-and-deploy (push) Successful in 49s
22 lines
388 B
Makefile
22 lines
388 B
Makefile
cflags += -nostdinc \
|
|
-nostdlib \
|
|
-ffreestanding \
|
|
-fno-builtin \
|
|
-std=c11 \
|
|
-pedantic \
|
|
-Wall \
|
|
-Wextra \
|
|
-ffunction-sections \
|
|
-fdata-sections
|
|
|
|
cflags += -isystem ../include
|
|
|
|
ldflags += -ffreestanding \
|
|
-nostdlib \
|
|
-fno-builtin \
|
|
-fuse-ld=lld \
|
|
-static \
|
|
-Wl,--gc-sections \
|
|
-Wl,--strip-all \
|
|
-flto
|