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
e759112a
Commit
e759112a
authored
23 years ago
by
toy
Browse files
Options
Downloads
Patches
Plain Diff
Add some comments and update to use -DSOLARIS25 and solaris-os.c by
default.
parent
c02c3223
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lisp/Config.sun4_solaris_gcc
+9
-2
9 additions, 2 deletions
lisp/Config.sun4_solaris_gcc
lisp/Config.sun4_solaris_sunc
+8
-1
8 additions, 1 deletion
lisp/Config.sun4_solaris_sunc
with
17 additions
and
3 deletions
lisp/Config.sun4_solaris_gcc
+
9
−
2
View file @
e759112a
CPPFLAGS = -I/usr/openwin/include -I/usr/include/X11 -DSOLARIS -DSVR4
# For Solaris 2.4 or earlier, remove -DSOLARIS25 from CPPFLAGS.
CPPFLAGS = -I/usr/openwin/include -I/usr/include/X11 -DSOLARIS -DSOLARIS25 -DSVR4
CC = gcc
CPP = gcc -E
CFLAGS = -g
...
...
@@ -9,6 +11,11 @@ DEPEND_FLAGS = -traditional-cpp
NM = ./solaris-nm
ASSEM_SRC = sparc-assem.S
ARCH_SRC = sparc-arch.c
OS_SRC = sunos-os.c os-common.c undefineds.c
# For Solaris, you may also use sunos-os.c instead of solaris-os.c.
# This has been checked out on Solaris 2.7 (aka 7) without problems.
# The resulting binaries work ok on 2.5.
OS_SRC = solaris-os.c os-common.c undefineds.c
OS_LINK_FLAGS=
OS_LIBS= -lsocket -lnsl -ldl
This diff is collapsed.
Click to expand it.
lisp/Config.sun4_solaris_sunc
+
8
−
1
View file @
e759112a
CPPFLAGS = -I/usr/include/X11 -DSOLARIS -DSVR4
# For Solaris 2.4 or earlier, remove -DSOLARIS25 from CPPFLAGS.
CPPFLAGS = -I/usr/include/X11 -DSOLARIS -DSOLARIS25 -DSVR4
CC = cc
CPP = cc -E
# -xs so we can use gdb
...
...
@@ -8,6 +10,11 @@ COMPILE.S = as -P $(CPPFLAGS)
NM = ./solaris-nm
ASSEM_SRC = sparc-assem.S
ARCH_SRC = sparc-arch.c
# For Solaris, you may also use sunos-os.c instead of solaris-os.c.
# This has been checked out on Solaris 2.7 (aka 7) without problems.
# The resulting binaries work ok on 2.5.
OS_SRC = sunos-os.c os-common.c undefineds.c
OS_LINK_FLAGS=
OS_LIBS= -lsocket -lnsl -ldl
...
...
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