From 6305e91acccbfbd7cbb31aefbb1dc9175c342c83 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sat, 16 Apr 2022 21:57:13 +0200 Subject: guest: remove fPIC from makefile --- guest/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guest/Makefile') diff --git a/guest/Makefile b/guest/Makefile index a2eea1b..5dca740 100644 --- a/guest/Makefile +++ b/guest/Makefile @@ -5,7 +5,7 @@ guest16: guest.ld guest16.S $(CC) $(CFLAGS) -m16 -o $@ -nostdlib -ffreestanding -Wpedantic -Wall -Wextra -Werror -T guest.ld guest16.S guest64: guest.ld guest64.S - $(CC) $(CFLAGS) -m64 -o $@ -nostdlib -fPIC -ffreestanding -Wpedantic -Wall -Wextra -Werror -T guest.ld guest64.S + $(CC) $(CFLAGS) -m64 -o $@ -nostdlib -ffreestanding -Wpedantic -Wall -Wextra -Werror -T guest.ld guest64.S disasm16: guest16 objdump -D -b binary -m i8086 -M intel $^ -- cgit v1.2.3