<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
GitLab
</title>

</head>
<body>
<style type="text/css">
img {
max-width: 100%; height: auto;
}
</style>
<div class="content">
<h3>
Raymond Toy pushed to branch master
at <a href="https://gitlab.common-lisp.net/cmucl/cmucl">cmucl / cmucl</a>
</h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/d003a22443cd8325a87817e29c9caf933488975d">d003a224</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2016-05-14T07:56:19-07:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap">Add -X flag

When -X is given (break) just before quiting the cross-compilation.
This allows for some debugging of the cross-compiled result.</pre>
</li>
</ul>
<h4>1 changed file:</h4>
<ul>
<li class="file-stats">
<a href="#620f2ecad2bb6f74b2fcd0134963a841" style="text-decoration: none">
bin/cross-build-world.sh
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id="620f2ecad2bb6f74b2fcd0134963a841">
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/d003a22443cd8325a87817e29c9caf933488975d#diff-0">
<strong>
bin/cross-build-world.sh
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="background: #ffdddd; color: #000000">--- a/bin/cross-build-world.sh
</span><span style="background: #ddffdd; color: #000000">+++ b/bin/cross-build-world.sh
</span><span style="color: #aaaaaa">@@ -1,16 +1,19 @@
</span> #!/bin/sh
 
 usage() {
<span style="background: #ffdddd; color: #000000">-    echo "cross-build-world.sh [-crl] [-B file] [-G Gnumake] target-dir cross-dir cross-compiler-script [build-binary [flags]]"
</span><span style="background: #ddffdd; color: #000000">+    echo "cross-build-world.sh [-crlX] [-B file] [-G Gnumake] target-dir cross-dir cross-compiler-script [build-binary [flags]]"
</span>     echo "  -c      Clean target and cross directories before compiling"
     echo "  -r      Recompile lisp runtime"
     echo "  -l      Load cross-compiled kernel to make a new lisp kernel"
     echo "  -B file Use this as the cross bootstrap file." 
     echo "  -G make Specifies the name of GNU make"
<span style="background: #ddffdd; color: #000000">+    echo "  -X      (break) before quitting the cross compilation (for debugging)"
</span> }
 
 MAKE=make
<span style="background: #ffdddd; color: #000000">-while getopts "crlB:G:" arg
</span><span style="background: #ddffdd; color: #000000">+BREAK=""
+
+while getopts "crlXB:G:" arg
</span> do
     case $arg in
       c) CLEAN_DIR=yes ;;
<span style="color: #aaaaaa">@@ -18,6 +21,7 @@ do
</span>       l) LOAD_KERNEL=yes ;;
       B) BOOTSTRAP=$OPTARG ;;
       G) MAKE=$OPTARG ;;
<span style="background: #ddffdd; color: #000000">+      X) BREAK="(break)" ;;
</span>       h | \?) usage; exit 1 ;;
     esac
 done
<span style="color: #aaaaaa">@@ -122,6 +126,7 @@ $LISP "$@" -noinit -nositeinit <<EOF
</span> (setq *gc-verbose* t *interactive* t)
 
 (load "target:tools/worldbuild")
<span style="background: #ddffdd; color: #000000">+$BREAK
</span> (ext:quit)
 EOF
 
</code></pre>

<br>
</li>

</div>
<div class="footer" style="margin-top: 10px">
<p style="color: #777; font-size: small">

<br>
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/d003a22443cd8325a87817e29c9caf933488975d">View it on GitLab</a>.
<br>
You're receiving this email because of your account on gitlab.common-lisp.net.
If you'd like to receive fewer emails, you can
adjust your notification settings.
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Commit","url":"https://gitlab.common-lisp.net/cmucl/cmucl/commit/d003a22443cd8325a87817e29c9caf933488975d"}}</script>
</p>
</div>
</body>
</html>