<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
  p.details {
    font-style:italic;
    color:#777
  }
  .footer p {
    font-size:small;
    color:#777
  }
  pre.commit-message {
    white-space: pre-wrap;
  }
  .file-stats a {
    text-decoration: none;
  }
  .file-stats .new-file {
    color: #090;
  }
  .file-stats .deleted-file {
    color: #B00;
  }
</style>
<body>
<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/11a7e37bb39ee3e24e62c9382d35552259a39ab5">11a7e37b</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-10-09T21:56:01Z</i>
</div>
<pre class='commit-message'>Exit with the return code from obj_run_linker.

obj_run_linker() returns the return code from the call to system().
Exit lisp with this return code to indicate if running the executable
linker script worked or not.</pre>
</li>
</ul>
<h4>1 changed file:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
src/lisp/save.c
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/11a7e37bb39ee3e24e62c9382d35552259a39ab5#diff-0'>
<strong>
src/lisp/save.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/lisp/save.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/lisp/save.c
</span><span style="color: #aaaaaa">@@ -250,6 +250,7 @@ save_executable(char *filename, lispobj init_function)
</span> {
     char *dir_name;
     char *dir_copy;
<span style="color: #000000;background-color: #ddffdd">+    int rc;
</span>     
 #if defined WANT_CGC
     volatile lispobj *func_ptr = &init_function;
<span style="color: #aaaaaa">@@ -357,9 +358,9 @@ save_executable(char *filename, lispobj init_function)
</span>     
     printf("Linking executable...\n");
     fflush(stdout);
<span style="color: #000000;background-color: #ffdddd">-    obj_run_linker(init_function, filename);
</span><span style="color: #000000;background-color: #ddffdd">+    rc = obj_run_linker(init_function, filename);
</span>     printf("done.\n");
     free(dir_copy);
<span style="color: #000000;background-color: #ffdddd">-    exit(0);
</span><span style="color: #000000;background-color: #ddffdd">+    exit(rc);
</span> }
 #endif
</code></pre>

<br>
</li>

</div>
<div class='footer' style='margin-top: 10px;'>
<p>

<br>
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/11a7e37bb39ee3e24e62c9382d35552259a39ab5">View it on GitLab</a>
<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/11a7e37bb39ee3e24e62c9382d35552259a39ab5"}}</script>
</p>
</div>
</body>
</html>