You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While updating my project fromdep to the new module system, I now see a requirement where the wasn't before on gcc. In my build environment, go [test|build] commands fails because gcc is not in my build environment's PATH.
dep vendoring logs (go1.10beta2 linux/amd64)
dep ensure -v
Gopkg.lock was already in sync with imports and Gopkg.toml
(1/45) Wrote github.com/Sirupsen/logrus@v0.11.5
(2/45) Wrote github.com/satori/go.uuid@v1.2.0
(3/45) Wrote github.com/BurntSushi/toml@v0.3.0
(4/45) Wrote github.com/prometheus/client_golang@v0.8.0
(5/45) Wrote github.com/prometheus/client_model@master
(6/45) Wrote github.com/prometheus/common@master
(7/45) Wrote github.com/prometheus/procfs@master
(8/45) Wrote github.com/stretchr/testify@v1.2.0
(9/45) Wrote github.com/PuerkitoBio/goquery@v1.2.0
(10/45) Wrote gopkg.in/yaml.v2@v2
(11/45) Wrote github.com/tevjef/go-fcm@master
(12/45) Wrote github.com/robfig/go-cache@master
(13/45) Wrote github.com/ugorji/go@v1.1
(14/45) Wrote github.com/tevjef/go-runtime-metrics@master
(15/45) Wrote golang.org/x/oauth2@master
(16/45) Wrote golang.org/x/time@master
(17/45) Wrote golang.org/x/sync@master
(18/45) Wrote gopkg.in/go-playground/validator.v8@v8.18.2
(19/45) Wrote gopkg.in/alecthomas/kingpin.v2@v2.2.6
(20/45) Wrote gopkg.in/redis.v5@v5.2.9
(21/45) Wrote google.golang.org/appengine@v1.0.0
(22/45) Wrote github.com/kelseyhightower/envconfig@v1.3.0
(23/45) Wrote golang.org/x/net@master
(24/45) Wrote github.com/alecthomas/template@master
(25/45) Wrote github.com/alecthomas/units@master
(26/45) Wrote golang.org/x/sys@master
(27/45) Wrote github.com/beorn7/perks@master
(28/45) Wrote google.golang.org/grpc@v1.9.2
(29/45) Wrote google.golang.org/genproto@master
(30/45) Wrote github.com/andybalholm/cascadia@master
(31/45) Wrote github.com/davecgh/go-spew@v1.1.0
(32/45) Wrote github.com/gin-contrib/sse@master
(33/45) Wrote cloud.google.com/go@v0.18.0
(34/45) Wrote github.com/gin-gonic/gin@v1.2
(35/45) Wrote github.com/pmezard/go-difflib@v1.0.0
(36/45) Wrote github.com/jmoiron/sqlx@de8647470aafe4854c976707c431dbe1eb2822c6
(37/45) Wrote github.com/golang/protobuf@master
(38/45) Wrote github.com/lib/pq@83612a56d3dd153a94a629cd64925371c9adad78
(39/45) Wrote github.com/matttproud/golang_protobuf_extensions@v1.0.0
(40/45) Wrote github.com/mattn/go-isatty@v0.0.3
(41/45) Wrote github.com/pkg/errors@v0.8.0
(42/45) Wrote github.com/pquerna/ffjson@d49c2bc1aa135aad0c6f4fc2056623ec78f5d5ac
(43/45) Wrote golang.org/x/text@master
(44/45) Wrote github.com/gogo/protobuf@909568be09de550ed094403c2bf8a261b5bb730a
(45/45) Wrote google.golang.org/api@master
This is a dup of #26988. See the discussion there for a little bit of background on the issue. This is being investigated, so I'm closing here as a dup.
What version of Go are you using (
go version
)?go version go1.11 linux/amd64
Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (
go env
)?What did you do?
While updating my project from
dep
to the new module system, I now see a requirement where the wasn't before ongcc
. In my build environment, go [test|build] commands fails becausegcc
is not in my build environment's PATH.dep vendoring logs (go1.10beta2 linux/amd64)
go mod vendoring logs
What did you expect to see?
I expect go mod to not require gcc.
What did you see instead?
go mod required when downloading/vendoring dependencies gcc when
dep
did not.What did I do to fix it?
Setting
CGO_ENABLED=0
The text was updated successfully, but these errors were encountered: