blob: b42b00cd7a3d70341db616bd76aa7118f78b94ee (
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
|
# How to build
## Dependencies
Install [Go](https://golang.org/doc/install) and some other tools.
Refer to [Prerequisites chapter](../1_Prerequisites.html) for more details.
## Building
Clone sources under `$ROOTDIR/src/gerrit.automotivelinux.org/gerrit/src/xds/xds-cli`
in order respect directory hierarchy that match Go package import logic (see
[How to Write Go Code](https://golang.org/doc/code.html) for more details).
Then use delivered Makefile :
```bash
# Declare ROOTDIR, can be any location (for example xds-build)
ROOTDIR=$HOME/xds-build
# Create directory hierarchy that match Go package import logic
mkdir -p $ROOTDIR/src/gerrit.automotivelinux.org/gerrit/src/xds
cd $ROOTDIR/src/gerrit.automotivelinux.org/gerrit/src/xds
# Clone sources
git clone https://gerrit.automotivelinux.org/gerrit/src/xds/xds-cli
# or git clone ssh://YOUR_USERNAME@gerrit.automotivelinux.org:29418/src/xds/xds-cli
# Build xds-cli
# (note that GOPATH will correctly be set by Makefile)
cd xds-cli
make all
```
Generate xds-cli package / tarball
```bash
make package-all
```
|