diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-05 17:39:36 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-05 17:39:36 +0100 |
commit | 9358c9fb4b198adf8594cedd6b8941d88dec63e9 (patch) | |
tree | 807dc35de2dccbf6e96d498a0d01eece293f2ecb /docs/part-2/4_xds-gdb.md | |
parent | fb3fdb7bc37627489eda28c374177af879c924af (diff) |
XDS sources are now hold under AGL Gerrit (update refs).
Diffstat (limited to 'docs/part-2/4_xds-gdb.md')
-rw-r--r-- | docs/part-2/4_xds-gdb.md | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/part-2/4_xds-gdb.md b/docs/part-2/4_xds-gdb.md index 6e5b57d..8bb47aa 100644 --- a/docs/part-2/4_xds-gdb.md +++ b/docs/part-2/4_xds-gdb.md @@ -14,11 +14,11 @@ Two debugging models are supported: By default XDS debug model is used and you need to define `XDS_NATIVE_GDB` variable to use native gdb debug mode instead. -> **SEE ALSO**: [xds-agent](https://github.com/iotbzh/xds-agent), a local agent +> **SEE ALSO**: [xds-agent](https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/xds/xds-agent.git), a local agent used to interface xds-server. -> **SEE ALSO**: [xds-server](https://github.com/iotbzh/xds-server), a REST API server +> **SEE ALSO**: [xds-server](https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/xds/xds-server.git), a REST API server used to remotely cross build applications. -> **SEE ALSO**: [xds-cli](https://github.com/iotbzh/xds-cli), XDS command line tool. +> **SEE ALSO**: [xds-cli](https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/xds/xds-cli.git), XDS command line tool. ## Configuration @@ -101,13 +101,14 @@ Example of gdb init file where we define project and sdk ID: ### Building -Clone this repo into your `$GOPATH/src/github.com/iotbzh` and use delivered Makefile: +Clone this repo into your `$GOPATH/src/gerrit.automotivelinux.org/gerrit/src/xds` and use delivered Makefile: ```bash export GOPATH=$(realpath ~/workspace_go) - mkdir -p $GOPATH/src/github.com/iotbzh - cd $GOPATH/src/github.com/iotbzh - git clone https://github.com/iotbzh/xds-gdb.git + mkdir -p $GOPATH/src/gerrit.automotivelinux.org/gerrit/src/xds + cd $GOPATH/src/gerrit.automotivelinux.org/gerrit/src/xds + git clone https://gerrit.automotivelinux.org/gerrit/src/xds/xds-gdb + # or git clone ssh://YOUR_USERNAME@gerrit.automotivelinux.org:29418/src/xds/xds-gdb cd xds-gdb make ``` |