diff options
Diffstat (limited to 'module/scripts/compile.scm')
-rw-r--r-- | module/scripts/compile.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/module/scripts/compile.scm b/module/scripts/compile.scm index f0294b5d6..84d235b8a 100644 --- a/module/scripts/compile.scm +++ b/module/scripts/compile.scm @@ -111,10 +111,13 @@ Compile each Guile source file FILE into a Guile object. -f, --from=LANG specify a source language other than `scheme' -t, --to=LANG specify a target language other than `objcode' +Note that autocompilation will be turned off. + Report bugs to <guile-user@gnu.org>.~%") (exit 0))) (set! %load-path (append load-path %load-path)) + (set! %load-should-autocompile #f) (if (and output-file (or (null? input-files) |