aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/src
diff options
context:
space:
mode:
authorKostis Sagonas <[email protected]>2017-03-27 15:10:20 +0200
committerKostis Sagonas <[email protected]>2017-03-27 15:10:20 +0200
commit70bdb9e79429fb347c5437743d0e8f6851e0783d (patch)
tree3e5180b7c57b585ba12ed389a7a56d65cd26b4c2 /lib/asn1/src
parentbe2b0e6e5b4786cb6f7d56cdcdc05339aa214406 (diff)
downloadotp-70bdb9e79429fb347c5437743d0e8f6851e0783d.tar.gz
otp-70bdb9e79429fb347c5437743d0e8f6851e0783d.tar.bz2
otp-70bdb9e79429fb347c5437743d0e8f6851e0783d.zip
Add a no_native option wherever there is an on_load
This is a poor man's solution that allows to build and test the system with all files compiled to native code simply by setting the ERL_COMPILER_OPTS environment variable. Better solutions, like automatically setting the no_native option whenever the compiler sees an on_load attribute, obviously exist but require more time to implement.
Diffstat (limited to 'lib/asn1/src')
-rw-r--r--lib/asn1/src/asn1rt_nif.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/asn1/src/asn1rt_nif.erl b/lib/asn1/src/asn1rt_nif.erl
index ff464885f6..e540b9f50d 100644
--- a/lib/asn1/src/asn1rt_nif.erl
+++ b/lib/asn1/src/asn1rt_nif.erl
@@ -26,6 +26,7 @@
decode_ber_tlv/1,
encode_ber_tlv/1]).
+-compile(no_native).
-on_load(load_nif/0).
-define(ASN1_NIF_VSN,1).