Compiling From Sources

Configure

See REQUIREMENTS.md for the complete list of dependencies.

Configure with the default settings:

test -f configure || autoreconf -iv
./configure
make

Configure with non-standard settings:

asn1c-specific ./configure options include:

OptionDescription
--enable-ASN_DEBUGproduce debug log during make check testing
--enable-code-coveragewhether to enable code coverage support
--enable-Werrorabort compilation after any C compiler warning
--enable-test-Werrorabort compiling tests after any C compiler warning
--enable-test-32bitenable tests for 32-bit compatibility
--disable-test-ubsandisable Undefined Behavior Sanitizer for tests
--disable-test-asandisable Address Sanitizer for tests
--enable-test-fuzzerenable LLVM LibFuzzer for randomized testing

invoke ./configure --help for details.

Build

Build the libraries and the compiler:

make

Ensure asn1c is still behaving well after compiling on your platform:

make check

Install

Install the compiler into a standard location:

make install
# Use ./configure --prefix to override install location.

Display the asn1c manual page:

man asn1c

Quick Usage Guide

For a usage guide and more information please refer to:

In case of any difficulties with installing the compiler, consider using the Online ASN.1 Compiler at http://lionet.info/asn1c.

-- Lev Walkin vlm@lionet.info