summaryrefslogtreecommitdiff
path: root/Toolchain/Patches
AgeCommit message (Collapse)Author
2021-03-11Toolchain: Remove unnecessary file from commitBen Wiederhake
This file is never read by gcc, and the filename looks like it was never meant to be added.
2021-02-19Toolchain: Use -ftls-model=initial-exec by defaultItamar
Our TLS implementation relies on the TLS model being "initial-exec". We previously enforced this by adding the '-ftls-model=initial-exec' flag in the root CmakeLists file, but that did not affect ports - So now we put that flag in the gcc spec files. Closes #5366
2021-01-04Toolchain: Disable exceptions by defaultItamar
We now configure gcc to always use the -fno-exceptions flag. This does not affect our code since we do not use exceptions, and also fixes the gcc port.
2020-12-24Toolchain+LibC: Fix usage of crt filesItamar
We now configure the gcc spec files to use a different crt files for static & PIE binaries. This relieves us from the need to explicitly specify the desired crt0 file in cmake scripts.
2020-12-14Toolchain+Ports: Fix gcc patch fileItamar
Previously, some hunks of the t-slibgcc patch failed to apply
2020-12-14Toolchain: Fix usage of libgcc_s & build PIE executables by defaultItamar
We can now build the porst with the shared libraries toolchain.
2020-12-14Build: Build libgcc_s.soItamar
This is the shared version of libgcc
2020-12-14Toolchain: Configure the path to the dynamic linkerItamar
2020-05-16Toolchain/Ports: Update to gcc 10.1.0Shannon Booth
2020-04-05Toolchain: Fix trailing white space warnings when gcc.patch is appliedBrian Gianforcaro
Noticed the warnings about trailing white space in the patch fly by as I was running Toolchain/BuildIt.sh on a new machine.
2020-01-01Toolchain: Use crtbeginS and crtendS for shared objectsAndrew Kaster
Turns out the reason GCC wasn't as smart about startup code for shared objects as we hoped is because nobody told it to be :D Change the STARTFILE_SPEC and ENDFILE_SPEC in gcc/config/serenity.h to skip crt0.o and to link the S variants of crtbegin and crtend for shared objects. Because we're using the crtbegin and crtend from libgcc, also tell libgcc in libgcc/config.host to compile crtbeginS and crtendS from crtstuff.c.
2019-12-27Toolchain: Allow building shared objectsAndreas Kling
Here goes a small first step towards dynamic linking.
2019-12-19Update toolchain to binutils-2.33.1 gcc-9.2.0Philip Herron
Toolchain build makes git repo out of toolchain to allow patching Fix Makefiles to use new libstdc++ Parameterize BuildIt with default TARGET of i686 but arm is experimental
2019-04-29Toolchain: Added build script (wip)VAN BOSSUYT Nicolas