Fix development makefile to work with newer versions of clang.

This commit is contained in:
Andrius Štikonas 2023-12-06 19:50:58 +00:00
parent bd13a75dfc
commit 2b8bc1569e
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ ESP_SIZE_SECTORS = $$(($(ESP_SIZE_MIB) * 2048))
DISK_SIZE_SECTORS = $$(($(ESP_SIZE_SECTORS) + 2048 + 33))
cc = clang
cflags = -ffreestanding -MMD -mno-red-zone -std=c11 -target x86_64-unknown-windows
cflags = -ffreestanding -MMD -mno-red-zone -std=c11 -target x86_64-pc-windows-coff -fno-PIE -fno-stack-protector
ld = lld-link
lflags = -subsystem:efi_application -nodefaultlib -dll
build_dir = build