Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lisp-invocation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
qitab
lisp-invocation
Compare revisions
0653be203724285e1590426b139354251e3df35d to 9d1a4930b4da48030bb74a80db443b6ec4254712
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
qitab/lisp-invocation
Select target project
No results found
9d1a4930b4da48030bb74a80db443b6ec4254712
Select Git revision
Branches
master
Swap
Target
qitab/lisp-invocation
Select target project
qitab/lisp-invocation
1 result
0653be203724285e1590426b139354251e3df35d
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
1.0.11: fix a bug in loop usage.
· 9d1a4930
Francois-Rene Rideau
authored
9 years ago
9d1a4930
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
allegro-variants.lisp
+2
-2
2 additions, 2 deletions
allegro-variants.lisp
lisp-invocation.asd
+1
-1
1 addition, 1 deletion
lisp-invocation.asd
with
3 additions
and
3 deletions
allegro-variants.lisp
View file @
9d1a4930
...
@@ -36,11 +36,11 @@ REGISTER-LISP-IMPLEMENTATION."
...
@@ -36,11 +36,11 @@ REGISTER-LISP-IMPLEMENTATION."
:for
allegro-variant
=
(
conc-keyword
:allegro
casename
charname
bitsname
smpname
)
:for
allegro-variant
=
(
conc-keyword
:allegro
casename
charname
bitsname
smpname
)
:for
fullname
=
(
strcat
"Allegro CL"
:for
fullname
=
(
strcat
"Allegro CL"
casefullname
charfullname
bitsfullname
smpfullname
)
casefullname
charfullname
bitsfullname
smpfullname
)
:for
executable
=
(
format
nil
"~(~alisp~a~)"
caseexe
charname
)
:do
:for
executable
=
(
format
nil
"~(~alisp~a~)"
caseexe
charname
)
:for
(
exepath
imgpath
)
=
(
if
windowsp
:for
(
exepath
imgpath
)
=
(
if
windowsp
(
list
(
subpathname
dir
(
if
(
emptyp
charfullname
)
"buildi.exe"
"build.exe"
))
(
list
(
subpathname
dir
(
if
(
emptyp
charfullname
)
"buildi.exe"
"build.exe"
))
(
subpathname
dir
executable
:type
"dxl"
))
(
subpathname
dir
executable
:type
"dxl"
))
(
list
(
subpathname
dir
executable
)
nil
))
(
list
(
subpathname
dir
executable
)
nil
))
:do
(
c
`
(
,
allegro-variant
(
c
`
(
,
allegro-variant
:fullname
,
fullname
:fullname
,
fullname
:name
,
(
native-namestring
exepath
)
:name
,
(
native-namestring
exepath
)
...
...
This diff is collapsed.
Click to expand it.
lisp-invocation.asd
View file @
9d1a4930
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
(
error
"ASDF 3.1.2 required"
))
(
error
"ASDF 3.1.2 required"
))
(
defsystem
"lisp-invocation"
(
defsystem
"lisp-invocation"
:version
"1.0.1
0
"
:version
"1.0.1
1
"
:author
(
"Francois-Rene Rideau"
)
:author
(
"Francois-Rene Rideau"
)
:maintainer
"Francois-Rene Rideau"
:maintainer
"Francois-Rene Rideau"
:licence
"MIT"
:licence
"MIT"
...
...
This diff is collapsed.
Click to expand it.