-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME
More file actions
19 lines (16 loc) · 686 Bytes
/
Copy pathREADME
File metadata and controls
19 lines (16 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Installation:
The UCLATools project requires cmake to build. CMAKE can be obtained at
http://www.cmake.org/HTML/index.html or with your favorite package manager,
e.g. macports, fink, ports, apt, etc.
The default install places binaries in ${UCLATOOLS_SRC_DIR}/bin.
Basically, this means you'll find all the binaries in the source directory
under bin.
1. mkdir bingcc
2. cd bingcc
3. cmake ..
4. make && make install
To set a custom install path:
1. cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local ..
where "/usr/local" is your custom install path.
For debugging output. For now, this just enables verbose output.
1. cmake -DCMAKE_BUILD_TYPE:String=Debug ..