dbuild.dat 766 B

123456789101112131415161718192021222324252627
  1. % dbuild.dat -- Bootstrap a minimal REDUCE "in core" from standard
  2. % sources only, without use of fasl files.
  3. % Author: Anthony C. Hearn.
  4. % Modifications for MS-DOS: Stanley L. Kameny.
  5. (set_heap_extend_size 120000)
  6. (setq nonkernelupperbound* nil) % I need to understand this.
  7. (date!-and!-time)
  8. (setq loaddirectories!* '("" "$reduce\lisp\psl\win32\red\"
  9. "$reduce\lisp\psl\win32\psl\"))
  10. (dskin "$reduce\packages\support\dbuild.sl")
  11. (setq lispsystem!* (append (list (intern (getenv "system"))
  12. (intern (getenv "machine")))
  13. (delete 'unix lispsystem!*)))
  14. (savesystem "Base REDUCE" "$reduce\lisp\psl\win32\red\reduce" nil)
  15. (date!-and!-time)
  16. (exitlisp) % Necessary to exit lisp and avoid computer halt.