blob: f92ca7406073ef684b3bce2c38c8f658a730a373 [file] [log] [blame]
A module with files that have build constraints.
-- go.mod --
module example.com/build-constraints
-- LICENSE --
$BSD0License
-- cpu/cpu.go --
// Package cpu implements processor feature detection
// used by the Go standard library.
package cpu
-- cpu/cpu_arm.go --
package cpu
nconst CacheLinePadSize = 1
-- cpu/cpu_arm64.go --
package cpu
const CacheLinePadSize = 2
-- cpu/cpu_x86.go --
// +build 386 amd64 amd64p32
package cpu
const CacheLinePadSize = 3
-- ignore/ignore.go --
// +build ignore
package ignore