We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f815b commit be4f53eCopy full SHA for be4f53e
builder/builder_test.go
@@ -52,9 +52,12 @@ func TestClangAttributes(t *testing.T) {
52
for _, options := range []*compileopts.Options{
53
{GOOS: "linux", GOARCH: "386"},
54
{GOOS: "linux", GOARCH: "amd64"},
55
- {GOOS: "linux", GOARCH: "arm", GOARM: "5"},
56
- {GOOS: "linux", GOARCH: "arm", GOARM: "6"},
57
- {GOOS: "linux", GOARCH: "arm", GOARM: "7"},
+ {GOOS: "linux", GOARCH: "arm", GOARM: "5,softfloat"},
+ {GOOS: "linux", GOARCH: "arm", GOARM: "6,softfloat"},
+ {GOOS: "linux", GOARCH: "arm", GOARM: "7,softfloat"},
58
+ {GOOS: "linux", GOARCH: "arm", GOARM: "5,hardfloat"},
59
+ {GOOS: "linux", GOARCH: "arm", GOARM: "6,hardfloat"},
60
+ {GOOS: "linux", GOARCH: "arm", GOARM: "7,hardfloat"},
61
{GOOS: "linux", GOARCH: "arm64"},
62
{GOOS: "darwin", GOARCH: "amd64"},
63
{GOOS: "darwin", GOARCH: "arm64"},
0 commit comments