-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathINSTALL
39 lines (25 loc) · 859 Bytes
/
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
INSTALL
=======
This library is managed through the standard autoconf/automake/libtool
build and install routine you should be familiar with. Options for the
configure script are described below.
To compile the library, execute the following commands:
./configure
make
If you want to build profit from a clean directory, do something like this
instead:
mkdir build
cd build
../configure
make
To install the library (after having compiled it), execute the following
commands:
make install
To install someplace other than under /usr/local, use the --prefix=directory
option for the configure script.
That should be all.
PACKAGE SPECIFIC CONFIGURE OPTIONS
==================================
--with-bigendian=[yes|no|auto] (default: auto)
This option can be used to override the endianness detection for the
target architecture.