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
Jan Moringen
asdf
Commits
8b81474f
Commit
8b81474f
authored
12 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Update TODO.
parent
160a8398
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
TODO
+17
-5
17 additions, 5 deletions
TODO
with
17 additions
and
5 deletions
TODO
+
17
−
5
View file @
8b81474f
...
@@ -2,9 +2,21 @@
...
@@ -2,9 +2,21 @@
and that breakage gets fixed quickly.
and that breakage gets fixed quickly.
* Implement concatenate-source-op and monolithic-concatenate-source-op
* Implement concatenate-source-op and monolithic-concatenate-source-op
** Check that all files have the same around-compile and encoding attributes.
** Check that all files have the same around-compile and encoding attributes.
* Have ASDF itself use that.
** Have ASDF itself use that.
* Make load-op a generic operation that selects the proper strategy
for each system, module or file, according to component properties and user-configuration:
compile the lisp file then load the fasl (load-compiled-op),
load the lisp file without compiling (load-source-op),
compile all files for the system, link them and load the result (load-fasl-op),
compile all files for the system *and* its dependencies, link and load (monolithic-load-fasl-op),
concatenate all files for the system, then load the result (load-concatenated-source-op),
concatenate all files for the system, then link them and load the result (load-compiled-concatenated-op),
concatenate all files for the system *and* its dependencies, link and load (monolithic-load-compiled-concatenated-op).
* Stop the dynamic ASDFn temporary package madness.
* Stop the dynamic ASDFn temporary package madness.
Just Have ASDF-USER that :use's ASDF and ASDF-UTILS
** Just Have ASDF-USER that :use's ASDF and ASDF-UTILS
* Have load-op do the selection between loading .lisp, .fasl,
* Force cleanup:
.system.lisp, .system.fasl, .system-and-dependencies.lisp,
** Move verbose, force, force-not out of operation-ancestor into the plan.
.system-and-dependencies.fasl, etc.
** Remove operation-ancestor.
** Have find-operation be a simple memoizing thing (possible?)
** Replace any user-provided make-instance'd operation by the memoized version?
** Kill original-initargs -- BEWARE, it currently has clients!
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