diff --git a/README.md b/README.md index 6dbd84b..44ca95a 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ This repository will show you how to set up a simple 64-bit x86_64 Long Mode hig This project can be built using the host compiler on most Linux distros on x86_64, but it's recommended you set up an x86_64-elf [cross compiler](https://wiki.osdev.org/GCC_Cross-Compiler). +It is also recommended to cross reference the contents of this repository with [the Limine Bare Bones](https://wiki.osdev.org/Limine_Bare_Bones) OSDev wiki page. + ## Where to go from here You may be asking yourself: "what now?". So here's a list of things you may want to do to get started working diff --git a/kernel/GNUmakefile b/kernel/GNUmakefile index 286ae16..638f98a 100644 --- a/kernel/GNUmakefile +++ b/kernel/GNUmakefile @@ -30,8 +30,8 @@ override INTERNALCFLAGS := \ -ffreestanding \ -fno-stack-protector \ -fno-stack-check \ - -fno-pic \ -fno-pie \ + -fno-pic \ -mabi=sysv \ -mno-80387 \ -mno-mmx \