This commit is contained in:
mintsuki 2022-06-15 21:07:24 +02:00
parent c522b3f832
commit 997b2edda0
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -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 \