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
ebb2b74c
Commit
ebb2b74c
authored
12 years ago
by
Raymond Toy
Browse files
Options
Downloads
Patches
Plain Diff
Add -R option to force recompilation of C runtime.
parent
5e57578a
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
bin/build-all.sh
+9
-7
9 additions, 7 deletions
bin/build-all.sh
src/general-info/release-20d.txt
+2
-0
2 additions, 0 deletions
src/general-info/release-20d.txt
with
11 additions
and
7 deletions
bin/build-all.sh
+
9
−
7
View file @
ebb2b74c
...
...
@@ -34,12 +34,13 @@ usage ()
echo
" -U Update and overwite the translations files."
echo
" -P On the last build, (re)generate cmucl.pot and the"
echo
" translations"
echo
" -R Force recompilation of C runtime"
}
CREATE_OPT
=
""
UPDATE_POT
=
"-P"
while
getopts
"PUB:b:v:C:o:8:?"
arg
while
getopts
"P
R
UB:b:v:C:o:8:?"
arg
do
case
$arg
in
b
)
BASE
=
"
$OPTARG
"
;;
...
...
@@ -50,6 +51,7 @@ do
v
)
VERSION
=
"
$OPTARG
"
;
VERSION_SET
=
true
;;
U
)
UPDATE_TRANS
=
"-U"
;;
P
)
UPDATE_POT
=
""
;;
R
)
RECOMPILEC
=
"-R"
;;
\?
)
usage
;
exit
1
;;
esac
done
...
...
@@ -81,15 +83,15 @@ buildx86 ()
if
[
-n
"
$OLD8
"
]
;
then
# Build non-unicode versions
set
-x
$BINDIR
/build.sh
-f
x87
-b
${
BASE
}
-8bit
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
-o
"
$OLD8
"
$BINDIR
/build.sh
-f
sse2
-b
${
BASE
}
-8bit
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
-o
"
$OLD8
"
$BINDIR
/build.sh
-f
x87
-b
${
BASE
}
-8bit
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
${
RECOMPILEC
}
-o
"
$OLD8
"
$BINDIR
/build.sh
-f
sse2
-b
${
BASE
}
-8bit
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
${
RECOMPILEC
}
-o
"
$OLD8
"
set
+x
fi
# Build the unicode versions
if
[
-n
"
$OLDLISP
"
]
;
then
set
-x
$BINDIR
/build.sh
-f
x87
-b
${
BASE
}
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
-o
"
$OLDLISP
"
$BINDIR
/build.sh
-f
sse2
-b
${
BASE
}
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
-o
"
$OLDLISP
"
$BINDIR
/build.sh
-f
x87
-b
${
BASE
}
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
${
RECOMPILEC
}
-o
"
$OLDLISP
"
$BINDIR
/build.sh
-f
sse2
-b
${
BASE
}
$bootfiles
${
VERSION
:+-v
"
$VERSION
"
}
-C
"
${
CREATE_OPT
}
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
${
RECOMPILEC
}
-o
"
$OLDLISP
"
set
+x
fi
}
...
...
@@ -102,13 +104,13 @@ buildsun4 ()
# Build non-unicode versions
if
[
-n
"
$OLD8
"
]
;
then
set
-x
$BINDIR
/build.sh
-b
${
BASE
}
-8bit
$bootfiles
${
VERS
}
-C
"
$CREATE_OPT
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
-o
"
$OLD8
"
$BINDIR
/build.sh
-b
${
BASE
}
-8bit
$bootfiles
${
VERS
}
-C
"
$CREATE_OPT
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
${
RECOMPILEC
}
-o
"
$OLD8
"
set
+x
fi
# Build the unicode version.
if
[
-n
"
$OLDLISP
"
]
;
then
set
-x
$BINDIR
/build.sh
-b
${
BASE
}
$bootfiles
${
VERS
}
-C
"
$CREATE_OPT
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
-o
"
$OLDLISP
"
$BINDIR
/build.sh
-b
${
BASE
}
$bootfiles
${
VERS
}
-C
"
$CREATE_OPT
"
${
UPDATE_TRANS
}
${
UPDATE_POT
}
${
RECOMPILEC
}
-o
"
$OLDLISP
"
set
+x
fi
}
...
...
This diff is collapsed.
Click to expand it.
src/general-info/release-20d.txt
+
2
−
0
View file @
ebb2b74c
...
...
@@ -102,6 +102,8 @@ New in this release:
in Xcode 4.
* Add -R option to build.sh to force recompiling the C
runtime. (Default it to compile only what is changed.)
* Add -R option to build-all.sh to force recompiling the C
runtime.
* Improvements to the PCL implementation of CLOS:
...
...
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