From 2b8bc1569e067f72db4f2936d401300904a814f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Wed, 6 Dec 2023 19:50:58 +0000 Subject: [PATCH] Fix development makefile to work with newer versions of clang. --- Development/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Development/Makefile b/Development/Makefile index 6e8a15b..fb288d1 100644 --- a/Development/Makefile +++ b/Development/Makefile @@ -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