summaryrefslogtreecommitdiff
path: root/Toolchain/ComputeDependenciesHash.sh
AgeCommit message (Collapse)Author
2020-05-20Revert "Toolchain: Don't pre-build LibC and LibM, nor pre-install their headers"Andreas Kling
This reverts commit 4e051c6c15f25b58ee67127a9e4bd5e7a8684fea.
2020-05-20Toolchain: Don't pre-build LibC and LibM, nor pre-install their headersAndrew Kaster
We can do away with that shenanigans now that libstdc++ is gone. Also, simplify the toolchain dependency hash calculation to only depend on the toolchain build script(s) and the Patches files we use to modify the toolchain itself.
2020-05-08Services: Renamed from ServersAndreas Kling
It didn't feel right to have a "DHCPClient" in a "Servers" directory. Rename this to Services to better reflect the type of programs we'll be putting in there.
2020-03-08Travis: Cache toolchainBen Wiederhake
This should give a significant boost to Travis speeds, because most of the compile time is spent building the toolchain over and over again. However, the toolchain (or libc or libm) changes only rarely, so most rebuilds can skip this step. The hashing has been put into a separate file to keep it as decoupled as possible from BuiltIt.sh.