From 997b2edda0bcf9e34930c46377b7eaa9f4641505 Mon Sep 17 00:00:00 2001 From: mintsuki Date: Wed, 15 Jun 2022 21:07:24 +0200 Subject: [PATCH] Update --- README.md | 2 ++ kernel/GNUmakefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 \