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
45885699
Commit
45885699
authored
16 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
Clean up Config, like in linux_gencgc, removing LINKAGE, GENCGC, and
SSE2 flags, and adding them to RUNTIME.
parent
03cd24a9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lisp/Config.x86_darwin
+4
-5
4 additions, 5 deletions
lisp/Config.x86_darwin
with
4 additions
and
5 deletions
lisp/Config.x86_darwin
+
4
−
5
View file @
45885699
...
...
@@ -9,25 +9,24 @@ LD = ld
CPP
=
cpp
ifdef
FEATURE_LINKAGE_TABLE
LINKAG
E
=
-DLINKAGE_TABLE
RUNTIM
E
+
=
-DLINKAGE_TABLE
endif
# Enable support for generational GC
ifdef
FEATURE_GENCGC
GENCGC
=
-DGENCGC
RUNTIME
+
=
-DGENCGC
GC_SRC
=
gencgc.c
endif
# If either FEATURE_X7 or FEATURE_SSE2 is defined, compile the code
# for SSE2 support.
ifdef
FEATURE_X87
SSE2
=
-DFEATURE_SSE2
RUNTIME
+
=
-DFEATURE_SSE2
endif
ifdef
FEATURE_SSE2
SSE2
=
-DFEATURE_SSE2
RUNTIME
+
=
-DFEATURE_SSE2
endif
RUNTIME
=
$(
LINKAGE
)
$(
GENCGC
)
$(
SSE2
)
CPPFLAGS
=
-Di386
-DDARWIN
$(
RUNTIME
)
CFLAGS
=
-Wstrict-prototypes
-Wall
-g3
$(
CPPFLAGS
)
$(
INCLUDES
)
ASFLAGS
=
-g3
$(
INCLUDES
)
$(
RUNTIME
)
...
...
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