diff options
author | Andy Wingo <wingo@pobox.com> | 2013-12-02 21:31:47 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-12-02 21:31:47 +0100 |
commit | 691697de0937c52488952c1d79d3ba4416ccbb0f (patch) | |
tree | e7ca4f8431b61523cdb5f47eac261375d6d2edaf /module/scripts/compile.scm | |
parent | 7f710308376126e415d109e302d7b4013326d712 (diff) | |
download | guile-691697de0937c52488952c1d79d3ba4416ccbb0f.tar.gz |
Rename "RTL" to "bytecode"
"RTL" didn't make any sense, and now that there's no other bytecode to
disambiguate against, just call it bytecode.
* module/Makefile.am:
* module/ice-9/eval-string.scm:
* module/language/bytecode.scm:
* module/language/bytecode/spec.scm:
* module/language/cps/arities.scm:
* module/language/cps/compile-bytecode.scm:
* module/language/cps/compile-rtl.scm:
* module/language/cps/contification.scm:
* module/language/cps/elide-values.scm:
* module/language/cps/primitives.scm:
* module/language/cps/reify-primitives.scm:
* module/language/cps/spec.scm:
* module/language/cps/specialize-primcalls.scm:
* module/language/rtl.scm:
* module/language/rtl/spec.scm:
* module/scripts/compile.scm:
* module/system/base/compile.scm:
* module/system/repl/common.scm:
* module/system/vm/assembler.scm:
* module/system/vm/debug.scm:
* module/system/vm/disassembler.scm:
* module/system/vm/dwarf.scm:
* test-suite/tests/cross-compilation.test:
* test-suite/tests/dwarf.test:
* test-suite/tests/rtl-compilation.test:
* test-suite/tests/rtl.test:
* test-suite/vm/run-vm-tests.scm: Fixups.
Diffstat (limited to 'module/scripts/compile.scm')
-rw-r--r-- | module/scripts/compile.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/scripts/compile.scm b/module/scripts/compile.scm index 76a253129..ab2c456d4 100644 --- a/module/scripts/compile.scm +++ b/module/scripts/compile.scm @@ -139,7 +139,7 @@ There is NO WARRANTY, to the extent permitted by law.~%")) (cons #:O o) o))) (from (or (assoc-ref options 'from) 'scheme)) - (to (or (assoc-ref options 'to) 'rtl)) + (to (or (assoc-ref options 'to) 'bytecode)) (target (or (assoc-ref options 'target) %host-type)) (input-files (assoc-ref options 'input-files)) (output-file (assoc-ref options 'output-file)) @@ -158,7 +158,7 @@ Compile each Guile source file FILE into a Guile object. for a list of available warnings -f, --from=LANG specify a source language other than `scheme' - -t, --to=LANG specify a target language other than `rtl' + -t, --to=LANG specify a target language other than `bytecode' -T, --target=TRIPLET produce bytecode for host TRIPLET Note that auto-compilation will be turned off. |