diff options
author | dos-reis <gdr@axiomatics.org> | 2008-08-15 09:20:22 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-08-15 09:20:22 +0000 |
commit | a2f39f13bed2d39accb83cbb7f9e3336b2c92c1c (patch) | |
tree | 08d31ef32d2acb81c52ef96cc3dcf12820e72b87 /src/interp | |
parent | 78e524ef8c2135d112f880695af20b1b818011cd (diff) | |
download | open-axiom-a2f39f13bed2d39accb83cbb7f9e3336b2c92c1c.tar.gz |
* lisp/core.lisp.in (|$StandardLinking|): New. Export.
* lisp/Makefile.in (edit): Update.
* interp/daase.lisp: Don't load initial databases when
--system-algebra.
* interp/Makefile.pamphlet (${SAVESYS}): Build with --system-algebra.
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/Makefile.in | 2 | ||||
-rw-r--r-- | src/interp/Makefile.pamphlet | 2 | ||||
-rw-r--r-- | src/interp/daase.lisp | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/interp/Makefile.in b/src/interp/Makefile.in index e7775f17..72fe016a 100644 --- a/src/interp/Makefile.in +++ b/src/interp/Makefile.in @@ -200,7 +200,7 @@ ${SAVESYS}: database.date \ $(axiom_targetdir)/algebra/exposed.$(FASLEXT) \ $(axiom_target_datadir)/msgs/s2-us.msgs \ $(ASAUTO) $(TRANOBJS) $(OBJS) makeint.$(LNKEXT) - $(BOOTSYS) -- --system="$(AXIOM)/" \ + $(BOOTSYS) -- --system="$(AXIOM)/" --system-algebra \ --sysalg="$(axiom_src_datadir)/algebra/" \ --make --output=$@ --main="BOOT::|restart|" \ --load-directory=. $(OBJS) makeint.$(LNKEXT) diff --git a/src/interp/Makefile.pamphlet b/src/interp/Makefile.pamphlet index 7fde6536..e7d373d0 100644 --- a/src/interp/Makefile.pamphlet +++ b/src/interp/Makefile.pamphlet @@ -353,7 +353,7 @@ ${SAVESYS}: database.date \ $(axiom_targetdir)/algebra/exposed.$(FASLEXT) \ $(axiom_target_datadir)/msgs/s2-us.msgs \ $(ASAUTO) $(TRANOBJS) $(OBJS) makeint.$(LNKEXT) - $(BOOTSYS) -- --system="$(AXIOM)/" \ + $(BOOTSYS) -- --system="$(AXIOM)/" --system-algebra \ --sysalg="$(axiom_src_datadir)/algebra/" \ --make --output=$@ --main="BOOT::|restart|" \ --load-directory=. $(OBJS) makeint.$(LNKEXT) diff --git a/src/interp/daase.lisp b/src/interp/daase.lisp index 66efc4e4..d65a1812 100644 --- a/src/interp/daase.lisp +++ b/src/interp/daase.lisp @@ -348,7 +348,8 @@ (browseopen) (setq *category-stream-stamp* '(0 . 0)) (categoryopen) ;note: this depends on constructorform in browse.daase -#-:CCL (initial-getdatabase) + (unless (|getOptionValue| (|Option| "system-algebra") (|%systemOptions|)) + (initial-getdatabase)) (close *interp-stream*) (close *operation-stream*) (close *category-stream*) |