Skip to content
Snippets Groups Projects
Commit a152e7e7 authored by toy's avatar toy
Browse files

Add /usr/lib/cmucl to the default core search path. For x86/Linux

support.  From Adam Warner and Pierre Mai.
parent 0d440356
No related branches found
No related tags found
No related merge requests found
...@@ -202,6 +202,8 @@ New in this release: ...@@ -202,6 +202,8 @@ New in this release:
- Generational GC (gencgc) available for Sparc/Solaris on an - Generational GC (gencgc) available for Sparc/Solaris on an
experimental basis. Despite the name and feature, it is not experimental basis. Despite the name and feature, it is not
conservative. conservative.
- Search in /usr/lib/cmucl for the lisp core file as well, to
support x86/Linux
* Numerous improvements to the PCL implementation of CLOS: * Numerous improvements to the PCL implementation of CLOS:
- Gerd's PCL has been added, which fixes numerous bugs and ANSI/ - Gerd's PCL has been added, which fixes numerous bugs and ANSI/
......
/* /*
* main() entry point for a stand alone lisp image. * main() entry point for a stand alone lisp image.
* *
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.36 2003/08/21 15:26:36 gerd Exp $ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.37 2003/09/04 14:22:01 toy Exp $
* *
*/ */
...@@ -94,6 +94,7 @@ static char* cmucllib_search_list[] = ...@@ -94,6 +94,7 @@ static char* cmucllib_search_list[] =
"./../lib/cmucl/lib", "./../lib/cmucl/lib",
"./../lib", "./../lib",
"/usr/local/lib/cmucl/lib", "/usr/local/lib/cmucl/lib",
"/usr/lib/cmucl",
NULL NULL
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment