* build-aux/gocomp.sh.in: Unset CC and CXX.
+2025-03-07 Bruno Haible <bruno@clisp.org>
+
+ gocomp-script: Avoid error on native Windows.
+ * build-aux/gocomp.sh.in: Unset CC and CXX.
+
2025-03-06 Bruno Haible <bruno@clisp.org>
gocomp-script: New module.
# Usage: /bin/sh gocomp.sh [OPTION] SOURCE.go ...
+# Avoid error "CC environment variable is relative; must be absolute path"
+# on native Windows. Cf.
+# <https://github.com/golang/go/commit/aa161e799df7e1eba99d2be10271e76b6f758142>
+unset CC
+unset CXX
+
test -z "$GO_VERBOSE" || echo "@GO@ build @GOCOMPFLAGS@ $@"
exec @GO@ build @GOCOMPFLAGS@ "$@"