Skip to content

Commit 0e22d12

Browse files
authoredFeb 5, 2019
Update docs mentioning Go version + trace Makefile. (DataDog#2992)
1 parent 6427559 commit 0e22d12

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎Makefile.trace

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ binaries:
2828
mkdir -p ./bin
2929
TRACE_AGENT_VERSION=$(V) go generate ./internal/info
3030
go get -u github.com/karalabe/xgo
31-
xgo -dest=bin -go=1.10 -out=trace-agent-$(V) -targets=windows-6.1/amd64,linux/amd64,darwin-10.11/amd64 ./cmd/trace-agent
31+
xgo -dest=bin -go=1.11 -out=trace-agent-$(V) -targets=windows-6.1/amd64,linux/amd64,darwin-10.11/amd64 ./cmd/trace-agent
3232
mv ./bin/trace-agent-$(V)-windows-6.1-amd64.exe ./bin/trace-agent-$(V)-windows-amd64.exe
3333
mv ./bin/trace-agent-$(V)-darwin-10.11-amd64 ./bin/trace-agent-$(V)-darwin-amd64
3434
git reset --hard head && git checkout -

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and development, is located under [the docs directory](docs) of the present repo
1919
## Getting started
2020

2121
To build the Agent you need:
22-
* [Go](https://golang.org/doc/install) 1.10.2 or later.
22+
* [Go](https://golang.org/doc/install) 1.11.5 or later.
2323
* Python 2.7 along with development libraries.
2424
* Python dependencies. You may install these with `pip install -r requirements.txt`
2525
This will also pull in [Invoke](http://www.pyinvoke.org) if not yet installed.

‎docs/dev/agent_dev_env.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ environment and ensure a clean system python.
4141

4242
## Golang
4343

44-
You must install [go](https://golang.org/doc/install) version 1.10.2 or above. Make
44+
You must install [go](https://golang.org/doc/install) version 1.11.5 or above. Make
4545
sure that `$GOPATH/bin` is in your `$PATH` otherwise Invoke cannot use any
4646
additional tool it might need.
4747

‎docs/trace-agent/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ And check that the status is "running".
6969

7070
## Development
7171

72-
First, make sure Go 1.10+ is installed. You can do this by following the steps on the [official website](https://golang.org/dl/).
72+
First, make sure Go 1.11+ is installed. You can do this by following the steps on the [official website](https://golang.org/dl/).
7373
After cloning the repo, simply run the following command in the root of the `datadog-agent` repository:
7474

7575
```bash

‎pkg/logs/input/windowsevent/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# How to setup a windows eventlog dev environment
22

33
Cross compilation from mac is not easy, an easier path is to use a linux vm for that (for instance `ubuntu/trusty64` vagrant vm).
4-
Requirements are to install go 1.10+, and to install `mingw-w64` with apt.
4+
Requirements are to install go 1.11+, and to install `mingw-w64` with apt.
55

66
Once those requirements are met, to build, run:
77
```

0 commit comments

Comments
 (0)
Please sign in to comment.