Artifact b438b91d284313c4df021fc6e797a58f36576b101558cd9c28eed5d6c0ee0857:
- Executable file
r37/lisp/csl/cslbase/build0.lsp
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 2307) [annotate] [blame] [check-ins using] [more...]
% % Create fasl files for compiler, ccomp and extras and build a CSL % checkpoint image for a system that includes them. % % Run this using % csl -z build0.lsp -l build0.log % % % This code may be used and modified, and redistributed in binary % or source form, subject to the "CCL Public License", which should % accompany it. This license is a variant on the BSD license, and thus % permits use of code derived from this in either open and commercial % projects: but it does require that updates to this code be made % available back to the originators of the package. Note that as with % any BSD-style licenses the terms here are not compatible with the GNU % public license, and so GPL code should not be combined with the material % here in any way. % (verbos 3) (rdf "$cslbase/compat.lsp") (rdf "$cslbase/extras.lsp") (rdf "$cslbase/compiler.lsp") (clear_source_database) % First I compile those things that appear to be most heavily used in the % compiler. This should speed up the whole bootstrap compilation process (compile '( s!:improve s!:literal_order s!:comval s!:outopcode0 s!:plant_basic_block s!:remlose s!:islocal s!:is_lose_and_exit s!:comatom s!:destination_label s!:record_literal s!:resolve_labels s!:expand_jump s!:outopcode1lit stable!-sortip s!:iseasy s!:outjump s!:add_pending s!:comcall s!:resolve_literals)) (compile!-all) % Build fasl files for the compatibility code and the two % versions of the compiler. (clear_source_database) (faslout 'compat) (rdf "$cslbase/compat.lsp") (rdf "$cslbase/extras.lsp") (faslend) (faslout 'compiler) (rdf "$cslbase/compiler.lsp") (faslend) (faslout 'ccomp) (rdf "$cslbase/ccomp.lsp") (faslend) (bytecounts) (save_source_database "$cslbase/whereis.lsp") % % (restart-csl nil) is a fairly dramatic, and maybe dangerous function. It % abandons all existing Lisp data and restarts the system from scratch, % with only minimal built-in functionality. % (restart!-csl nil) (load!-module 'compat) (setq !*comp nil) (set!-autoload 'compile 'compiler) (set!-autoload 'compile!-all 'compiler) (set!-autoload 'faslout 'compiler) (set!-autoload 'c_out 'compiler) (setq !*comp t) (preserve)