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
6ec982de
Commit
6ec982de
authored
11 years ago
by
Raymond Toy
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into rtoy-lisp-trig
parents
36403a83
b7280406
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_common
+8
-2
8 additions, 2 deletions
src/lisp/Config.x86_common
src/lisp/Config.x86_freebsd
+4
-0
4 additions, 0 deletions
src/lisp/Config.x86_freebsd
src/lisp/Config.x86_linux
+4
-0
4 additions, 0 deletions
src/lisp/Config.x86_linux
with
16 additions
and
2 deletions
src/lisp/Config.x86_common
+
8
−
2
View file @
6ec982de
...
@@ -65,7 +65,13 @@ NM = nm -gp
...
@@ -65,7 +65,13 @@ NM = nm -gp
DEPEND_FLAGS
=
-MM
DEPEND_FLAGS
=
-MM
# This no longer has aliasing problems, so no need to use
# This no longer has aliasing problems, so no need to use
# -ffloat-store and -fno-strict-aliasing anymore.
# -fno-strict-aliasing anymore. However, if we're building with x87,
# we MUST use -ffloat-store to get proper double-float rounding.
e_rem_pio2.o
:
e_rem_pio2.c
e_rem_pio2.o
:
e_rem_pio2.c
$(
CC
)
-c
$(
CFLAGS
)
$(
CPPFLAGS
)
$<
$(
CC
)
-c
$(
CFLAGS
)
$(
CPPFLAGS
)
$(
CC_REM_PIO2
)
$<
k_rem_pio2.o
:
k_rem_pio2.c
$(
CC
)
-c
$(
CFLAGS
)
$(
CPPFLAGS
)
$(
CC_REM_PIO2
)
$<
This diff is collapsed.
Click to expand it.
src/lisp/Config.x86_freebsd
+
4
−
0
View file @
6ec982de
# -*- Mode: makefile -*-
# -*- Mode: makefile -*-
include
Config.x86_common
include
Config.x86_common
# Need -ffloat-store for e_rem_pio2 and k_rem_pio2 to get properly
# rounded double-floats while using x87 extended precision.
CC_REM_PIO2
=
-ffloat-store
UNDEFSYMPATTERN
=
-Xlinker
-u
-Xlinker
&
UNDEFSYMPATTERN
=
-Xlinker
-u
-Xlinker
&
OS_SRC
+=
FreeBSD-os.c elf.c
OS_SRC
+=
FreeBSD-os.c elf.c
OS_LINK_FLAGS
=
-dynamic
-export-dynamic
OS_LINK_FLAGS
=
-dynamic
-export-dynamic
...
...
This diff is collapsed.
Click to expand it.
src/lisp/Config.x86_linux
+
4
−
0
View file @
6ec982de
...
@@ -3,6 +3,10 @@ include Config.x86_common
...
@@ -3,6 +3,10 @@ include Config.x86_common
CPPFLAGS
+=
-m32
-rdynamic
-D__NO_CTYPE
-D_GNU_SOURCE
CPPFLAGS
+=
-m32
-rdynamic
-D__NO_CTYPE
-D_GNU_SOURCE
# Need -ffloat-store for e_rem_pio2 and k_rem_pio2 to get properly
# rounded double-floats while using x87 extended precision.
CC_REM_PIO2
=
-ffloat-store
UNDEFSYMPATTERN
=
-Xlinker
-u
-Xlinker
&
UNDEFSYMPATTERN
=
-Xlinker
-u
-Xlinker
&
ASSEM_SRC
+=
linux-stubs.S
ASSEM_SRC
+=
linux-stubs.S
OS_SRC
+=
Linux-os.c elf.c
OS_SRC
+=
Linux-os.c elf.c
...
...
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