forked from vlm/asn1c
-
Notifications
You must be signed in to change notification settings - Fork 2
/
INSTALL
51 lines (33 loc) · 1.14 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
QUICK START INSTALLATION
========================
./configure
(or `autoreconf -iv && ./configure` if you've got asn1c
straight from github).
Configure the build infrastructure for your platform
asn1c specific ./configure options include:
--enable-Werror
--enable-ASN_DEBUG
invoke `./configure --help` for details.
make
Build the libraries and the compiler.
make check
Ensure asn1c is still behaving well after compiling on your platform.
PLEASE CONTACT ME IF THIS STEP FAILS! Lev Walkin <[email protected]>
make install
Install the compiler into a standard location.
Use ./configure --prefix to override install location.
man asn1c
Display the asn1c manual page.
QUICK USAGE GUIDE
=================
For usage guide and more information please refer to:
* the ./README.md file.
* the asn1c manual page `man asn1c`
* the included quick start PDF doc/asn1c-quick.pdf
* the comprehensive usage documentation doc/asn1c-usage.pdf
In case of any difficulties with installing the compiler, consider using
the Online ASN.1 Compiler at
http://lionet.info/asn1c
--
Lev Walkin