aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorAndreas Eriksen <andreer@yahooinc.com>2024-04-29 13:09:12 +0200
committerAndreas Eriksen <andreer@yahooinc.com>2024-04-29 13:09:12 +0200
commitb0eb255746ccb3c8b164f9c541abe674263e39d0 (patch)
tree0703a4b76d6b7903d8d6c856fcb4ba7aa9b1d3a8 /client
parent970e8747037a91dad423f073e08be2612bdeb71a (diff)
link to cpu support doc
Diffstat (limited to 'client')
-rw-r--r--client/go/internal/osutil/run_cmd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/internal/osutil/run_cmd.go b/client/go/internal/osutil/run_cmd.go
index 3847dcc912a..ab7bd1069c3 100644
--- a/client/go/internal/osutil/run_cmd.go
+++ b/client/go/internal/osutil/run_cmd.go
@@ -38,7 +38,7 @@ func analyzeError(err error) string {
msg := "died with signal: " + status.Signal().String()
switch status.Signal() {
case syscall.SIGILL:
- msg = msg + " (you probably have an older CPU than required)"
+ msg = msg + " (you probably have an older CPU than required, see https://docs.vespa.ai/en/cpu-support.html)"
}
return msg
}