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
ba801d7e
Commit
ba801d7e
authored
14 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Add FAQ about disabling output translations.
parent
aa6cadfa
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
doc/asdf.texinfo
+29
-0
29 additions, 0 deletions
doc/asdf.texinfo
with
29 additions
and
0 deletions
doc/asdf.texinfo
+
29
−
0
View file @
ba801d7e
...
...
@@ -2645,6 +2645,35 @@ in the source directory of some system, and
use @code
{
asdf:apply
-
output
-
translations
}
to locate a file
whose pathname has been translated by the facility.
@subsection ``How can I wholly disable the compiler output cache?''
To permanently disable the compiler output cache
for all future runs of ASDF, you can:
@example
mkdir
-
p ~
/
.config
/
common
-
lisp
/
asdf
-
output
-
translations.conf.d
/
echo ':disable
-
cache' > ~
/
.config
/
common
-
lisp
/
asdf
-
output
-
translations.conf.d
/
99
-
disable
-
cache.conf
@end example
This assumes that you didn't otherwise configure the ASDF files
(
if you did, edit them again
)
,
and don't somehow override the configuration at runtime
with a shell variable
(
see below
)
or some other runtime command
(
e.g. some call to @code
{
asdf:initialize
-
output
-
translations
}
)
.
To disable the compiler output cache in Lisp processes
run by your current shell, try
(
assuming @code
{
bash
}
or @code
{
zsh
}
)
:
@example
export ASDF
_
OUTPUT
_
TRANSLATIONS
=/
:
@end example
To disable the compiler output cache just in the current Lisp process,
use
(
after loading ASDF but before using it
)
:
@example
(
asdf:initialize
-
output
-
translations "
/
:"
)
@end example
@section Issues with using and extending ASDF to define systems
...
...
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