Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
a152e7e7
Commit
a152e7e7
authored
21 years ago
by
toy
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
general-info/release-19a.txt
+2
-0
2 additions, 0 deletions
general-info/release-19a.txt
lisp/lisp.c
+2
-1
2 additions, 1 deletion
lisp/lisp.c
with
4 additions
and
1 deletion
general-info/release-19a.txt
+
2
−
0
View file @
a152e7e7
...
@@ -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/
...
...
This diff is collapsed.
Click to expand it.
lisp/lisp.c
+
2
−
1
View file @
a152e7e7
/*
/*
* 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.3
6
2003/0
8/21
1
5
:2
6:36 gerd
Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.3
7
2003/0
9/04
1
4
:2
2: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
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment