Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
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
Container registry
Model registry
Operate
Environments
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
Hugo Ishimaru
asdf
Commits
170359c5
"README.md" did not exist on "4d2f8069fe8328c3e869f30f3f96f1cb842ff3f9"
Commit
170359c5
authored
10 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
tools: Fix names of allegro variants
parent
4ea7e8e2
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
tools/invoke-lisp.lisp
+8
-8
8 additions, 8 deletions
tools/invoke-lisp.lisp
with
8 additions
and
8 deletions
tools/invoke-lisp.lisp
+
8
−
8
View file @
170359c5
...
...
@@ -31,17 +31,17 @@ and which systems to test loading with ASDF_TEST_SYSTEMS or s=
|#
(
loop
:for
(
smp
ch
ar
smpname
smpfullname
)
:in
`
((
""
""
""
)
(
"S"
,
(
string
:_s
)
" (SMP)"
))
:do
:for
(
smp
v
ar
smpname
smpfullname
)
:in
`
((
""
""
""
)
(
"S"
:_s
" (SMP)"
))
:do
(
loop
:for
(
bits
bitsname
bitsfullname
)
:in
'
((
""
""
)
(
"64"
"_64"
" (64-bit words)"
))
:for
dirvar
=
(
strcat
"
ALLEGRO"
bits
smp
ch
ar
)
:for
(
bits
var
bitsname
bitsfullname
)
:in
'
((
""
""
""
)
(
"64"
"_64"
" (64-bit words)"
))
:for
dirvar
=
(
format
nil
"~:@(
ALLEGRO
~A~A~)
"
bits
var
smp
v
ar
)
:for
dir
=
(
getenv-pathname
dirvar
:want-absolute
t
:ensure-directory
t
)
:do
(
loop
:for
(
char
bits
charname
)
:in
'
((
""
""
)
(
"8"
" (8-bit chars)"
))
:do
(
loop
:for
(
case
char
casename
casefullname
)
:in
'
((
"a"
""
""
)
(
"m"
:modern
" (modern syntax)"
))
:for
allegro-variant
=
(
conc-keyword
:allegro
casename
char
bits
bits
)
(
loop
:for
(
char
name
char
full
name
)
:in
'
((
""
""
)
(
"8"
" (8-bit chars)"
))
:do
(
loop
:for
(
case
exe
casename
casefullname
)
:in
'
((
"a"
""
""
)
(
"m"
:modern
" (modern syntax)"
))
:for
allegro-variant
=
(
conc-keyword
:allegro
casename
char
name
bitsname
smpname
)
:for
fullname
=
(
strcat
"Allegro CL"
casefullname
charname
bitsname
smpname
)
:for
executable
=
(
strcat
casechar
"lisp"
charbits
bits
)
:do
casefullname
char
full
name
bits
full
name
smp
full
name
)
:for
executable
=
(
format
nil
"~(~alisp~a~a~a~)"
caseexe
charname
bitsname
smpname
)
:do
(
register-lisp-implementation
allegro-variant
:fullname
fullname
...
...
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