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
Didier Verna
asdf
Commits
ac8dd122
Commit
ac8dd122
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Update the README, notably to point to debian/changelog for release notes.
parent
fa192c7d
No related branches found
Branches containing commit
Tags
2.002
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README
+19
-6
19 additions, 6 deletions
README
with
19 additions
and
6 deletions
README
+
19
−
6
View file @
ac8dd122
...
...
@@ -21,13 +21,13 @@ What is ASDF?
ASDF is the de facto standard build facility for Common Lisp.
If you come from the C/C++ world, the function ASDF covers a bit of what
each of
M
ake, autoconf,
Make,
dlopen and libc do for C programs:
each of
m
ake, autoconf, dlopen and libc do for C programs:
it orchestrates the compilation and dependency management,
handles some of the portability issues, dynamically finds and loads code,
and offers some portable system access.
Except everything is different in Common Lisp, and ultimately much simpler,
though it requires acquiring some basic concepts
;
notably, ASDF tries to make it all happen
in the current Lisp image.
though it requires acquiring some basic concepts
.
Importantly, ASDF builds all software
in the current Lisp image.
To use ASDF, read our manual::
...
...
@@ -38,6 +38,11 @@ will get you started as a simple user.
If you want to define your own systems, further read the section
Defining systems with defsystem.
The manual is also in the doc/ subdirectory, and can be prepared with::
make doc
ASDF 3 now includes an extensive runtime support library:
UIOP, the Utilities for Implementation- and OS- Portability.
Its documentation unhappily lies mainly in the source code and docstrings.
...
...
@@ -66,10 +71,18 @@ Debugging tip
To load ASDF in such a way that M-. will work, install the source code, and run::
(asdf:load-system :uiop) ;;
for uiop
(map () 'load ;;
for
asdf/defsystem
(asdf:load-system :uiop) ;;
loading uiop is simple
(map () 'load ;;
loading
asdf/defsystem
is tricky
(mapcar 'asdf:component-pathname
(asdf::required-components :asdf/defsystem :keep-component 'asdf:cl-source-file)))
Last updated Wednesday, January 31st, 2014.
What has changed?
-----------------
You can consult the debian/changelog for an overview of the
significant changes in each release, and
the git log for a detailed description of each commit.
Last updated Wednesday, March 13th, 2014.
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