Can you send a link to the specific RPM you installed? Perhaps it is putting the "vet" tool in the wrong location.
Something to try: % go test ... % strace -f -o trace.txt go test Then examine the trace output to locate the error ("no such tool"), walk back to see where it is trying to locate it, e.g. something like 198961 stat("/mumble/libexec/gcc/x86_64-pc-linux-gnu/9.0.0/vet", <unfinished ...> 198961 <... stat resumed> 0xc0001ace08) = -1 ENOENT (No such file or directory) 198951 futex(0xc000091120, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> 198961 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 198961 write(2, "go tool: no such tool \"vet\"\n", 28) = 28 Regards, Than On Thu, Jan 10, 2019 at 10:49 AM Jan Mercl <0xj...@gmail.com> wrote: > On Thu, Jan 10, 2019 at 4:46 PM Jan Mercl <0xj...@gmail.com> wrote: > > Copy/paste error: s/go test/go-8 test/, the output is shown correctly in > the OP. (Verified. Twice now.) > > -- > > -j > > -- > You received this message because you are subscribed to the Google Groups > "golang-nuts" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to golang-nuts+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.