diff options
author | Loïc Hoguin <[email protected]> | 2017-01-22 13:51:38 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-01-22 13:51:38 +0100 |
commit | 7bb98d0476dbe4ee5e9317e42ca17e4a7d717e0d (patch) | |
tree | 29b5fe0d72b65b9382d8b4e1d66a560a55557b77 /docs | |
parent | 1e5b5eb16cd528185246ad2b6cb356696ecafab6 (diff) | |
download | ninenines.eu-7bb98d0476dbe4ee5e9317e42ca17e4a7d717e0d.tar.gz ninenines.eu-7bb98d0476dbe4ee5e9317e42ca17e4a7d717e0d.tar.bz2 ninenines.eu-7bb98d0476dbe4ee5e9317e42ca17e4a7d717e0d.zip |
Publish the "Don't let it crash" article
Diffstat (limited to 'docs')
-rw-r--r-- | docs/en/erlang.mk/1/guide/app.asciidoc | 11 | ||||
-rw-r--r-- | docs/en/erlang.mk/1/guide/app/index.html | 9 |
2 files changed, 20 insertions, 0 deletions
diff --git a/docs/en/erlang.mk/1/guide/app.asciidoc b/docs/en/erlang.mk/1/guide/app.asciidoc index 229ce973..94f8eb1a 100644 --- a/docs/en/erlang.mk/1/guide/app.asciidoc +++ b/docs/en/erlang.mk/1/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 diff --git a/docs/en/erlang.mk/1/guide/app/index.html b/docs/en/erlang.mk/1/guide/app/index.html index b6fbf4f7..b05e48c4 100644 --- a/docs/en/erlang.mk/1/guide/app/index.html +++ b/docs/en/erlang.mk/1/guide/app/index.html @@ -471,6 +471,15 @@ sets, by defining ERLC_OPTS after including Erlang.mk using the <div class="content"></div></div>
</div>
<div class="sect3">
+<h4 id="_erlc_asn1_opts">ERLC_ASN1_OPTS</h4>
+<div class="paragraph"><p><code>ERLC_ASN1_OPTS</code> can be used to pass compiler options when compiling
+ASN.1 files. Please refer to the
+<a href="http://erlang.org/doc/man/asn1ct.html">asn1ct manual</a> for the full list.</p></div>
+<div class="paragraph"><p>By default, Erlang.mk will leave this empty.</p></div>
+<div class="paragraph"><p>You can redefine this variable in your Makefile.
+Please see the <code>ERLC_OPTS</code> section for instructions.</p></div>
+</div>
+<div class="sect3">
<h4 id="_erlc_exclude">ERLC_EXCLUDE</h4>
<div class="paragraph"><p><code>ERLC_EXCLUDE</code> can be used to exclude some modules from the
compilation. It’s there for handling special cases, you should
|