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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Tarn Burton
asdf
Commits
0e27f08f
Commit
0e27f08f
authored
8 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Let mark-component-preloaded accept any component designator.
Also remove an extraneous assertion.
parent
b12a48c5
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
operate.lisp
+8
-8
8 additions, 8 deletions
operate.lisp
with
8 additions
and
8 deletions
operate.lisp
+
8
−
8
View file @
0e27f08f
...
...
@@ -212,10 +212,9 @@ the implementation's REQUIRE rather than by internal ASDF mechanisms."))
;; but must check whether we can use find-system and short-circuit cl:require.
;; Otherwise, calling cl:require could result in nasty reentrant calls between
;; cl:require and asdf:operate that could potentially blow up the stack.
(
let*
((
module
(
car
arguments
))
(
let*
((
module
(
car
arguments
))
;; NB: we already checked that it was not null
(
name
(
string-downcase
module
))
(
system
(
find-system
name
nil
)))
(
assert
module
)
(
or
system
(
let
((
system
(
make-instance
'require-system
:name
name
)))
(
register-system
system
)
system
))))
...
...
@@ -259,10 +258,11 @@ the implementation's REQUIRE rather than by internal ASDF mechanisms."))
;; It is defined here to resolve what would otherwise be forward package references.
(
defun
mark-component-preloaded
(
component
)
"Mark a component as preloaded."
;; Recurse to children, so asdf/plan will hopefully be happy.
(
map
()
'mark-component-preloaded
(
component-children
component
))
;; Mark the timestamps of the common lisp-action operations as 0.
(
let
((
times
(
component-operation-times
component
)))
(
dolist
(
o
'
(
load-op
compile-op
prepare-op
))
(
setf
(
gethash
o
times
)
0
)))))
(
let
((
component
(
find-component
component
nil
:registered
t
)))
;; Recurse to children, so asdf/plan will hopefully be happy.
(
map
()
'mark-component-preloaded
(
component-children
component
))
;; Mark the timestamps of the common lisp-action operations as 0.
(
let
((
times
(
component-operation-times
component
)))
(
dolist
(
o
'
(
load-op
compile-op
prepare-op
))
(
setf
(
gethash
o
times
)
0
))))))
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