aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2022-04-16 21:57:13 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2022-04-16 21:57:13 +0200
commit6305e91acccbfbd7cbb31aefbb1dc9175c342c83 (patch)
tree525ae5bb7e05be7d2f1fe02b609c691574eb4faf
parentfb6b634de37e38fd1821f2cf9228df176f9526f5 (diff)
downloadmini-kvm-rs-6305e91acccbfbd7cbb31aefbb1dc9175c342c83.tar.gz
mini-kvm-rs-6305e91acccbfbd7cbb31aefbb1dc9175c342c83.zip
guest: remove fPIC from makefile
-rw-r--r--guest/Makefile2
1 files changed, 1 insertions, 1 deletions
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 $^