summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
-rw-r--r--mmu.h2
-rw-r--r--runoff.list3
3 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d17f1fa..09d790c 100644
--- a/Makefile
+++ b/Makefile
@@ -82,6 +82,13 @@ ASFLAGS = -m32 -gdwarf-2 -Wa,-divide
# FreeBSD ld wants ``elf_i386_fbsd''
LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null | head -n 1)
+# Disable PIE when possible (for Ubuntu 16.10 toolchain)
+ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e '[^f]no-pie'),)
+CFLAGS += -fno-pie -no-pie
+endif
+ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e '[^f]nopie'),)
+CFLAGS += -fno-pie -nopie
+endif
xv6.img: bootblock kernel
dd if=/dev/zero of=xv6.img count=10000
diff --git a/mmu.h b/mmu.h
index 9d6673c..d009d97 100644
--- a/mmu.h
+++ b/mmu.h
@@ -181,5 +181,3 @@ struct gatedesc {
#endif
-//PAGEBREAK!
-// Blank page.
diff --git a/runoff.list b/runoff.list
index 02d1b65..2df9b81 100644
--- a/runoff.list
+++ b/runoff.list
@@ -7,6 +7,7 @@ x86.h
asm.h
mmu.h
elf.h
+date.h
# entering xv6
entry.S
@@ -75,3 +76,5 @@ sh.c
bootasm.S
bootmain.c
+# link
+kernel.ld