-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix readme issues and link to glibc patch
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# toolchain | ||
# yiffOS toolchain | ||
The toolchain that is used to build yiffOS. | ||
|
||
You'll need a working clang + gcc setup on the host system to run these scripts. | ||
|
||
You'll also need the sources for: | ||
binutils 2.36.1 | ||
gcc 10.2.0 | ||
linux 5.13.13 | ||
glibc 2.33 | ||
openssl 1.1.1l | ||
cmake 3.21.1 | ||
llvm 12.0.1 | ||
* binutils 2.36.1 | ||
* gcc 10.2.0 | ||
* linux 5.13.13 | ||
* glibc 2.33 with [this patch](https://www.linuxfromscratch.org/patches/downloads/glibc/glibc-2.33-fhs-1.patch) | ||
* openssl 1.1.1l | ||
* cmake 3.21.1 | ||
* llvm 12.0.1 | ||
|
||
To allow the scripts to find the sources, please ensure the extracted sources are in a folder with only it's name as the folder name. (Example: gcc 10.2.0 would be in /sources/gcc) | ||
|
||
A destination folder and a target folder will need to be created to allow the toolchain to properly link. | ||
|
||
Script Usage: | ||
./create-toolchain.sh "destination folder" "target folder" "source folder" "makeflags" | ||
Script Usage: | ||
`./create-toolchain.sh "destination folder" "target folder" "source folder" "makeflags"` |