diff options
author | Klas Johansson <[email protected]> | 2017-01-11 23:15:04 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-01-12 13:00:22 +0100 |
commit | b8becc64eaa94290e8f325116fc16f62736141c5 (patch) | |
tree | 260a760e240ee88fc63dadb762fb9e56bf443e75 /doc/src/guide/app.asciidoc | |
parent | e7eb93f38635c261f508736dea2dc08a3c58c9a0 (diff) | |
download | erlang.mk-2017.01.12.tar.gz erlang.mk-2017.01.12.tar.bz2 erlang.mk-2017.01.12.zip |
Set ASN.1 compilation options using ERLC_ASN1_OPTS2017.01.12
`ERLC_ASN1_OPTS` can be used to pass compiler options when compiling
ASN.1 files. By default, Erlang.mk will leave this empty, but it can
be redefined in a Makefile.
Diffstat (limited to 'doc/src/guide/app.asciidoc')
-rw-r--r-- | doc/src/guide/app.asciidoc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/src/guide/app.asciidoc b/doc/src/guide/app.asciidoc index 229ce97..94f8eb1 100644 --- a/doc/src/guide/app.asciidoc +++ b/doc/src/guide/app.asciidoc @@ -284,6 +284,17 @@ include erlang.mk ERLC_OPTS := $(filter-out -Werror,$(ERLC_OPTS)) ---- +==== ERLC_ASN1_OPTS + +`ERLC_ASN1_OPTS` can be used to pass compiler options when compiling +ASN.1 files. Please refer to the +http://erlang.org/doc/man/asn1ct.html[asn1ct manual] for the full list. + +By default, Erlang.mk will leave this empty. + +You can redefine this variable in your Makefile. +Please see the `ERLC_OPTS` section for instructions. + ==== ERLC_EXCLUDE `ERLC_EXCLUDE` can be used to exclude some modules from the |