Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-26 Thread TheDiveO
Watch out for the difference between the -- in my experience often terrible and "stable" yet outdated -- docker.io packages and the docker-ce packages, see also https://docs.docker.com/engine/install/ubuntu/ There’s also a license difference regarding the no-redistribution unless you build the

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-25 Thread TheDiveO
Please do not install Docker as a snap, as this fundamentally breaks several parts of Docker. This is a well known limitation of snap. Simply install from the Docker repository, instructions are on the Docker website. Building Docker is complicated, as it predates Go modules and still has no

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-25 Thread Brian Candler
Like I said, those instructions are woefully out of date. Whilst the Go language has a compatibility guarantee for code written in Go, this does not apply to the tooling, which is subject to change over time. One of the major changes was the introduction of Go modules

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-25 Thread Brian Candler
No, like "go doc --help" instead of "godoc --help" On Tuesday, 25 April 2023 at 17:21:27 UTC+1 Mario Marietto wrote: > like this ? > > $ go get golang.org/x/tools/cmd/go doc > > go: module golang.org/x/tools@upgrade found (v0.8.0), but does not > contain package golang.org/x/tools/cmd/go > go:

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-25 Thread Mario Marietto
like this ? $ go get golang.org/x/tools/cmd/go doc go: module golang.org/x/tools@upgrade found (v0.8.0), but does not contain package golang.org/x/tools/cmd/go go: malformed module path "doc": missing dot in first path element On Tue, Apr 25, 2023 at 6:16 PM Brian Candler wrote: > You're

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-25 Thread Brian Candler
You're following out-of-date instructions. godoc is now "go doc". On Tuesday, 25 April 2023 at 16:52:09 UTC+1 Mario Marietto wrote: > Hello to everyone. > > I've restarted the tutorial from the beginning and I've saved every > command issued : > > $ cd /home/marietto > $ wget

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-25 Thread Mario Marietto
Hello to everyone. I've restarted the tutorial from the beginning and I've saved every command issued : $ cd /home/marietto $ wget https://dl.google.com/go/go1.20.3.linux-arm64.tar.gz $ tar -xf archive.tar.gz $ mv go go1.20.3 $ nano /home/marietto/.profile

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-25 Thread Mario Marietto
Hello to everyone. I've restarted the tutorial from the beginning and I'm trying to accomplish the next step,as indicated where he says : "*Note* containerd by default installs as static in the install script. Due to that failing (most likely needs musl to properly compile statically) I instead

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-24 Thread Ian Lance Taylor
On Mon, Apr 24, 2023 at 5:24 PM Mario Marietto wrote: > > root@marietto-nano:/home/marietto/Scaricati/go_git/src# bash make.bash > > WARNING: /home/marietto/go1.10.3/bin/go does not exist, found /usr/bin/go > from env > WARNING: set /usr/lib/go-1.18 as GOROOT_BOOTSTRAP > Building Go cmd/dist

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-24 Thread Mario Marietto
root@marietto-nano:/home/marietto/Scaricati/go_git/src# bash make.bash WARNING: /home/marietto/go1.10.3/bin/go does not exist, found /usr/bin/go from env WARNING: set /usr/lib/go-1.18 as GOROOT_BOOTSTRAP Building Go cmd/dist using /usr/lib/go-1.18. (go1.18.1 linux/arm64) Building Go toolchain1

Re: [go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-24 Thread Ian Lance Taylor
On Mon, Apr 24, 2023 at 4:17 PM Mario Marietto wrote: > root@marietto-nano:/home/marietto/Scaricati/go_git/src# bash all.bash Running all.bash builds the Go toolchain and standard library and runs all the tests. > I think that these errors : > > > FATAL: ThreadSanitizer: unsupported VMA

[go-nuts] FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 39 - Supported 48 / go: added github.com/docker/docker v23.0.4+incompatible

2023-04-24 Thread Mario Marietto
Hello. I'm playing with the jetson nano. I've just installed ubuntu 22.04 (for arm64) on top of it. Nvidia says that nothing will work on 22.04 and it is totally unsupported. Well,I'm trying to make it supported :) ; the first problem is related to Docker,because it worked on ubuntu 18.04