Update
This commit is contained in:
parent
c522b3f832
commit
997b2edda0
2 changed files with 3 additions and 1 deletions
|
@ -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).
|
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
|
## 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
|
You may be asking yourself: "what now?". So here's a list of things you may want to do to get started working
|
||||||
|
|
|
@ -30,8 +30,8 @@ override INTERNALCFLAGS := \
|
||||||
-ffreestanding \
|
-ffreestanding \
|
||||||
-fno-stack-protector \
|
-fno-stack-protector \
|
||||||
-fno-stack-check \
|
-fno-stack-check \
|
||||||
-fno-pic \
|
|
||||||
-fno-pie \
|
-fno-pie \
|
||||||
|
-fno-pic \
|
||||||
-mabi=sysv \
|
-mabi=sysv \
|
||||||
-mno-80387 \
|
-mno-80387 \
|
||||||
-mno-mmx \
|
-mno-mmx \
|
||||||
|
|
Loading…
Add table
Reference in a new issue