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
510a5d27
Commit
510a5d27
authored
34 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Initial revision
parent
18151398
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tools/inst-lisp
+14
-0
14 additions, 0 deletions
tools/inst-lisp
tools/mk-lisp
+36
-0
36 additions, 0 deletions
tools/mk-lisp
tools/updates
+35
-0
35 additions, 0 deletions
tools/updates
with
85 additions
and
0 deletions
tools/inst-lisp
0 → 100755
+
14
−
0
View file @
510a5d27
#!/bin/csh -fx
if ($#argv) then
set subdir = $argv[1]
else
set subdir = alpha
endif
set src = /afs/cs/project/clisp/new-compiler/@sys/$subdir
set dst = /afs/cs/misc/cmucl/@sys/alpha
rm -f $dst/bin/lisp $dst/lib/lisp.core
cp -p $src/ldb/ldb $dst/bin/lisp
cp -p lisp.core $dst/lib/lisp.core
This diff is collapsed.
Click to expand it.
tools/mk-lisp
0 → 100755
+
36
−
0
View file @
510a5d27
#!/bin/csh -f
if ($#argv) then
set subdir = $argv[1]
else
set subdir = alpha
endif
set date = `/bin/date | awk '{print $2 "-" $3 "-" $6}'`
# set a bunch of random env vars to fill up space.
setenv FOO XXXXXXXXXXXXXXXX
setenv FOO $FOO$FOO$FOO$FOO
setenv FOO $FOO$FOO$FOO$FOO
setenv BAR $FOO
setenv BAZ $FOO
setenv ACK $FOO
echo Building lisp.core dated $date from the \`\`$subdir\'\' subdir.
/afs/cs/project/clisp/new-compiler/@sys/$subdir/ldb/ldb -core /afs/cs/project/clisp/new-compiler/@sys/$subdir/ldb/kernel.core << EOF
#+nil (push :no-xp *features*)
#+nil (push :no-clx *features*)
#+nil (push :no-hemlock *features*)
#+nil (push :no-pcl *features*)
(setf (search-list "lisp:")
'("/afs/cs/project/clisp/new-compiler/@sys/$subdir/"))
(in-package "USER")
(load (open "lisp:code/worldload.lisp"))
$date
$date
$date
(quit)
EOF
echo
This diff is collapsed.
Click to expand it.
tools/updates
0 → 100755
+
35
−
0
View file @
510a5d27
#!/bin/csh -f
set from = ""
set to = ""
set dirs = ()
while ($#argv > 0)
if ("$argv[1]" !~ -*) then
set dirs = ($dirs $argv[1])
else
switch ($argv[1])
case "-from":
set from = $argv[2]
shift
breaksw
case "-to":
set from = $argv[2]
shift
breaksw
default:
echo "Bogus switch: $argv[1]"
exit
endsw
endif
shift
end
if ($#dirs == 0) set dirs = .
find $dirs -follow -name '*,v' -print | \
rlog - "-d$from<$to" | \
sed -n -e '/^RCS file:/p' -e '/^------/,/^======/p' | \
sed -e '/^RCS file:/{;:again\
N;s/^RCS file.*\nRCS file/RCS file/;t again\
}'
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