diff options
author | dos-reis <gdr@axiomatics.org> | 2008-08-20 03:16:46 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-08-20 03:16:46 +0000 |
commit | 98693c75a9f6c613f715d18c0d3749fc4a98ac3f (patch) | |
tree | 730413baab485ce9cbc13cce8255202fb62aa12d /configure | |
parent | e4b84ff6e392b5f1eda1529d4eec99e9e13ac2a8 (diff) | |
download | open-axiom-98693c75a9f6c613f715d18c0d3749fc4a98ac3f.tar.gz |
2008-08-19 Gabriel Dos Reis <gdr@cs.tamu.edu>
* configure.ac.pamphlet: Activate safety+debug build for ECL-based
system.
src/
2008-08-19 Gabriel Dos Reis <gdr@cs.tamu.edu>
* lisp/core.lisp.in (|$useDynamicLink|)[ECL]: Test for :DFFI feature.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -21144,6 +21144,15 @@ if test x"$axiom_enable_checking" = xyes; then echo "$as_me: runtime checking may increase compilation time" >&6;} fi +## ??? There currently seems to be a bug in ECL such that +## ??? only a debug+safety build can succeed. +case $axiom_lisp_flavor,$axiom_enable_checking in + ecl,no) + axiom_optimize_options="$axiom_optimize_options safety debug" + ;; + *) ;; +esac + |