Raymond Toy pushed to branch issue-89-remove-scavenging-of-read-only at cmucl / cmucl
Commits: 18980862 by Raymond Toy at 2021-01-02T20:23:53-08:00 Use correct dir names for cross compile
A typo. The directory names are xtarget/xcross not xtarget-x86/xcross-x86.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -39,7 +39,7 @@ linux:build: # Do cross compile first - bin/create-target.sh xtarget x86_linux_clang - bin/create-target.sh xcross x86_linux_clang - - bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget-x86/ xcross-x86/ src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp + - bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp # Regular build using the cross-compiled result - bin/build.sh $bootstrap -R -C "" -o xtarget/lisp/lisp - bin/make-dist.sh -I dist linux-4 @@ -110,7 +110,7 @@ osx:build: # Do cross compile first - bin/create-target.sh xtarget x86_darwin - bin/create-target.sh xcross x86_darwin - - bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget-x86/ xcross-x86/ src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp + - bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp # Regular build using the cross-compiled result - bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp - bin/make-dist.sh -I dist darwin-4
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/18980862a71eac3e16122c4d...