blob: 7167157612d945209fcd4fdd08419503ff6eff6c (
plain)
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
|
# C Library for accessing [Request Tracker's REST 1.0](https://rt-wiki.bestpractical.com/wiki/REST) interface
# Building
## Getting and preparing for configuration
```sh
$ git clone git://darapsa.org/librtclient.git
$ cd librtclient
$ autoreconf --install
```
## Optionally setting environment values
```sh
$ export CFLAGS="${CFLAGS} -g -DDEBUG -DANDROID -fPIC" # PIC might be needed later on android_armv7
$ export LDFLAGS="${LDFLAGS} -llog" # Android liblog
```
## Configuring for various target hosts
```sh
$ ./configure
```
or
```sh
$ CC=/usr/local/aarch64-linux-android/bin/aarch64-linux-android-clang ./configure --host=aarch64-linux-android
```
or
```sh
$ CC=/usr/local/arm-linux-androideabi/bin/arm-linux-androideabi-clang ./configure --host=arm-linux-androideabi
```
or so on.
## Compiling and linking
```sh
$ make # -jN (with N an integer number of parallel tasks you allow your computer to run for compiling this)
```
|