cmount: remove cgo from windows build requirements since it builds without

This commit is contained in:
Nick Craig-Wood
2022-04-24 10:27:28 +01:00
parent 1b0128ecb2
commit a947f298e6
5 changed files with 15 additions and 15 deletions

View File

@@ -1,7 +1,6 @@
//go:build cmount && cgo && (linux || darwin || freebsd || windows) && (!race || !windows)
//go:build cmount && ((linux && cgo) || (darwin && cgo) || (freebsd && cgo) || windows) && (!race || !windows)
// +build cmount
// +build cgo
// +build linux darwin freebsd windows
// +build linux,cgo darwin,cgo freebsd,cgo windows
// +build !race !windows
// FIXME this doesn't work with the race detector under Windows either