diff options
-rw-r--r-- | erts/doc/src/erlc.xml | 5 | ||||
-rw-r--r-- | lib/compiler/doc/src/compile.xml | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/erts/doc/src/erlc.xml b/erts/doc/src/erlc.xml index 2df026aef5..c3fc3b1686 100644 --- a/erts/doc/src/erlc.xml +++ b/erts/doc/src/erlc.xml @@ -239,6 +239,11 @@ erlc +export_all file.erl</pre> <p>Erlang assembler source code. It generates a <c><![CDATA[.beam]]></c> file.</p> <p>Supported options: same as for .erl.</p> </item> + <tag>.core</tag> + <item> + <p>Erlang core source code. It generates a <c><![CDATA[.beam]]></c> file.</p> + <p>Supported options: same as for .erl.</p> + </item> <tag>.yrl</tag> <item> <p>Yecc source code. It generates an <c><![CDATA[.erl]]></c> file.</p> diff --git a/lib/compiler/doc/src/compile.xml b/lib/compiler/doc/src/compile.xml index eb7745890e..1459f696a0 100644 --- a/lib/compiler/doc/src/compile.xml +++ b/lib/compiler/doc/src/compile.xml @@ -357,6 +357,13 @@ module.beam: module.erl \ is not documented, and may change between releases.</p> </item> + <tag><c>from_core</c></tag> + <item> + <p>The input file is expected to be core code (default + file suffix ".core"). Note that the format of core files + is not documented, and may change between releases.</p> + </item> + <tag><c>no_strict_record_tests</c></tag> <item> <p>This option is not recommended.</p> |