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
39b6b59b
Commit
39b6b59b
authored
8 years ago
by
Fred Gilham
Browse files
Options
Downloads
Patches
Plain Diff
Changes to allow building CMUCL under FreeBSD 10 and later.
parent
b6317868
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/lisp/Config.x86_freebsd
+2
-0
2 additions, 0 deletions
src/lisp/Config.x86_freebsd
src/motif/server/Config.FreeBSD
+2
-0
2 additions, 0 deletions
src/motif/server/Config.FreeBSD
src/tools/linker.sh
+1
-1
1 addition, 1 deletion
src/tools/linker.sh
with
5 additions
and
1 deletion
src/lisp/Config.x86_freebsd
+
2
−
0
View file @
39b6b59b
# -*- Mode: makefile -*-
# -*- Mode: makefile -*-
include
Config.x86_common
include
Config.x86_common
# Set the path to your 32-bit verison of GCC here.
CC
=
gcc
CPPFLAGS
+=
-march
=
pentium4
-mfpmath
=
sse
CPPFLAGS
+=
-march
=
pentium4
-mfpmath
=
sse
...
...
This diff is collapsed.
Click to expand it.
src/motif/server/Config.FreeBSD
+
2
−
0
View file @
39b6b59b
## Path to 32-bit GCC compiler.
CC=gcc
CFLAGS = -pthread -O2 -I/usr/local/include -I. -I$(VPATH)
CFLAGS = -pthread -O2 -I/usr/local/include -I. -I$(VPATH)
LDFLAGS = -L/usr/local/lib
LDFLAGS = -L/usr/local/lib
LIBS = -lXm -lXt -lX11
LIBS = -lXm -lXt -lX11
...
...
This diff is collapsed.
Click to expand it.
src/tools/linker.sh
+
1
−
1
View file @
39b6b59b
...
@@ -70,7 +70,7 @@ case $uname_s in
...
@@ -70,7 +70,7 @@ case $uname_s in
# See Config.x86_${uname_s}
# See Config.x86_${uname_s}
case
$uname_s
in
case
$uname_s
in
Linux
)
OS_LIBS
=
-ldl
;;
Linux
)
OS_LIBS
=
-ldl
;;
FreeBSD
)
OS_LIBS
=
-lutil
;;
FreeBSD
)
OS_LIBS
=
"-B/usr/lib32
-lutil
"
;;
esac
esac
;;
;;
Darwin
)
Darwin
)
...
...
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