diff options
author | meme <meme@users.noreply.github.com> | 2020-12-28 22:38:52 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-29 17:42:04 +0100 |
commit | 23b23cee5a8e7b0666de3d5a0991bc1b3bb8d244 (patch) | |
tree | b91e24f2839c2ff8b27545c11e084a4cb19e886c /Meta/build-root-filesystem.sh | |
parent | 8ca0e8325a5e2cc94b0a54d3ea9995fe33b75cde (diff) | |
download | serenity-23b23cee5a8e7b0666de3d5a0991bc1b3bb8d244.zip |
Build: Support non-i686 toolchains
* Add SERENITY_ARCH option to CMake for selecting the target toolchain
* Port all build scripts but continue to use i686
* Update GitHub Actions cache to include BuildIt.sh
Diffstat (limited to 'Meta/build-root-filesystem.sh')
-rwxr-xr-x | Meta/build-root-filesystem.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index d2894e00d1..6a1487f9da 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -33,7 +33,7 @@ umask 0022 printf "installing base system... " $CP -PdR "$SERENITY_ROOT"/Base/* mnt/ -$CP "$SERENITY_ROOT"/Toolchain/Local/i686-pc-serenity/lib/libgcc_s.so mnt/usr/lib/ +$CP "$SERENITY_ROOT"/Toolchain/Local/i686/i686-pc-serenity/lib/libgcc_s.so mnt/usr/lib/ $CP -PdR Root/* mnt/ # If umask was 027 or similar when the repo was cloned, # file permissions in Base/ are too restrictive. Restore |