From 9e9a93b9082dba570eb6055b406491586953a757 Mon Sep 17 00:00:00 2001 From: Joe Meyer Date: Sat, 6 Oct 2018 12:57:58 -0400 Subject: [PATCH] -fno-pie Fixes issues described [here](https://askubuntu.com/questions/851433/kernel-doesnt-support-pic-mode-for-compiling) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8fde63c..02e1d76 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -EXTRA_CFLAGS += $(USER_EXTRA_CFLAGS) +EXTRA_CFLAGS += $(USER_EXTRA_CFLAGS) -fno-pie EXTRA_CFLAGS += -O1 #EXTRA_CFLAGS += -O3 #EXTRA_CFLAGS += -Wall