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
b011e629
Commit
b011e629
authored
14 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
2.106: better ABCL implementation directory name, website fix (k, Xach)
parent
d2971032
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
asdf.lisp
+7
-4
7 additions, 4 deletions
asdf.lisp
doc/index.html
+1
-1
1 addition, 1 deletion
doc/index.html
with
8 additions
and
5 deletions
asdf.lisp
+
7
−
4
View file @
b011e629
...
@@ -70,7 +70,7 @@
...
@@ -70,7 +70,7 @@
(
eval-when
(
:load-toplevel
:compile-toplevel
:execute
)
(
eval-when
(
:load-toplevel
:compile-toplevel
:execute
)
(
let*
((
asdf-version
;; the 1+ helps the version bumping script discriminate
(
let*
((
asdf-version
;; the 1+ helps the version bumping script discriminate
(
subseq
"VERSION:2.10
5
"
(
1+
(
length
"VERSION"
))))
(
subseq
"VERSION:2.10
6
"
(
1+
(
length
"VERSION"
))))
(
existing-asdf
(
find-package
:asdf
))
(
existing-asdf
(
find-package
:asdf
))
(
vername
'
#:*asdf-version*
)
(
vername
'
#:*asdf-version*
)
(
versym
(
and
existing-asdf
(
versym
(
and
existing-asdf
...
@@ -2392,7 +2392,9 @@ located."
...
@@ -2392,7 +2392,9 @@ located."
(
defparameter
*architecture-features*
(
defparameter
*architecture-features*
'
((
:x86-64
:amd64
:x86_64
:x8664-target
)
'
((
:x86-64
:amd64
:x86_64
:x8664-target
)
(
:x86
:i686
:i586
:pentium3
:i486
:i386
:pc386
:iapx386
:x8632-target
:pentium4
)
(
:x86
:i686
:i586
:pentium3
:i486
:i386
:pc386
:iapx386
:x8632-target
:pentium4
)
:hppa64
:hppa
:ppc64
(
:ppc32
:ppc
:powerpc
)
:sparc64
:sparc
))
:hppa64
:hppa
:ppc64
(
:ppc32
:ppc
:powerpc
)
:sparc64
:sparc
:java-1.4
:java-1.5
:java-1.6
:java-1.7
))
(
defun
lisp-version-string
()
(
defun
lisp-version-string
()
(
let
((
s
(
lisp-implementation-version
)))
(
let
((
s
(
lisp-implementation-version
)))
...
@@ -2409,6 +2411,7 @@ located."
...
@@ -2409,6 +2411,7 @@ located."
(
:-ics
"8"
)
(
:-ics
"8"
)
(
:+ics
""
))
(
:+ics
""
))
(
if
(
member
:64bit
*features*
)
"-64bit"
""
))
(
if
(
member
:64bit
*features*
)
"-64bit"
""
))
#+
armedbear
(
format
nil
"~a-fasl~a"
s
system::*fasl-version*
)
#+
clisp
(
subseq
s
0
(
position
#\space
s
))
#+
clisp
(
subseq
s
0
(
position
#\space
s
))
#+
clozure
(
format
nil
"~d.~d-fasl~d"
#+
clozure
(
format
nil
"~d.~d-fasl~d"
ccl::*openmcl-major-version*
ccl::*openmcl-major-version*
...
@@ -2423,8 +2426,8 @@ located."
...
@@ -2423,8 +2426,8 @@ located."
#+
gcl
(
subseq
s
(
1+
(
position
#\space
s
)))
#+
gcl
(
subseq
s
(
1+
(
position
#\space
s
)))
#+
lispworks
(
format
nil
"~A~@[~A~]"
s
#+
lispworks
(
format
nil
"~A~@[~A~]"
s
(
when
(
member
:lispworks-64bit
*features*
)
"-64bit"
))
(
when
(
member
:lispworks-64bit
*features*
)
"-64bit"
))
;; #+sbcl (format nil "~a-fasl~d" s sb-fasl:+fasl-file-version+) ; f
asl
-f-v
is
redundant
;; #+sbcl (format nil "~a-fasl~d" s sb-fasl:+fasl-file-version+) ; f-f-v redundant
w/ version
#+
(
or
armedbear
cormanlisp
mcl
sbcl
scl
)
s
#+
(
or
cormanlisp
mcl
sbcl
scl
)
s
#-
(
or
allegro
armedbear
clisp
clozure
cmu
cormanlisp
digitool
#-
(
or
allegro
armedbear
clisp
clozure
cmu
cormanlisp
digitool
ecl
gcl
lispworks
mcl
sbcl
scl
)
s
))
ecl
gcl
lispworks
mcl
sbcl
scl
)
s
))
...
...
This diff is collapsed.
Click to expand it.
doc/index.html
+
1
−
1
View file @
b011e629
...
@@ -53,7 +53,7 @@
...
@@ -53,7 +53,7 @@
<li><a
href=
"http://common-lisp.net/gitweb?p=projects/asdf/asdf.git;a=blob;f=asdf.texinfo"
>
as texinfo source
</a></li>
<li><a
href=
"http://common-lisp.net/gitweb?p=projects/asdf/asdf.git;a=blob;f=asdf.texinfo"
>
as texinfo source
</a></li>
</ul>
</ul>
<a
href
=
"downloads"
></a>
<a
id
=
"downloads"
></a>
<h3>
Getting it
</h3>
<h3>
Getting it
</h3>
<p>
Though they may lag behind the version here, ASDF comes bundled with most Lisps.
<p>
Though they may lag behind the version here, ASDF comes bundled with most Lisps.
To get the greatest and latest, you can:
To get the greatest and latest, you can:
...
...
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