You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
garble/testdata/script
Daniel Martí 55921a06d4 fix building for GOOS=darwin on Go 1.22.0
It seems like building with Go 1.22.0 for GOOS=darwin started
running into some issues with the syscall package's use of ABIInternal
in assembly source code:

    > exec garble build
    [stderr]
    # syscall
    [...].s:16: ABI selector only permitted when compiling runtime, reference was to "runtime.entersyscall"

The error can be reproduced from another platform like GOOS=linux
as long as we have any test that cross-compiles std to GOOS=darwin.
We had crossbuild.txtar which only ensured we covered GOOS=windows
and GOOS=linux, so add a third case to ensure MacOS is covered too.

This will slow down the tests a bit, but is important for the sake
of ensuring that we catch these bugs early, even without MacOS on CI.
In fact, we hadn't caught this earlier for Go 1.22 precisely because
on CI we only tested on Go tip with GOOS=linux, for the sake of speed.

Adding the rest of the package import paths from objabi.allowAsmABIPkgs
to our runtimeAndDeps generated map solves this error.
5 months ago
..
asm.txtar support inline comments in asm #include lines 6 months ago
atomic.txtar drop support for Go 1.20 8 months ago
basic.txtar drop support for Go 1.20 8 months ago
cache.txtar drop support for Go 1.20 8 months ago
cgo.txtar support inline comments in asm #include lines 6 months ago
crossbuild.txtar fix building for GOOS=darwin on Go 1.22.0 5 months ago
ctrlflow.txtar add trash block generator (#825) 6 months ago
debugdir.txtar drop support for Go 1.20 8 months ago
embed.txtar drop support for Go 1.20 8 months ago
goenv.txtar drop support for Go 1.20 8 months ago
gogarble.txtar fix building for GOOS=darwin on Go 1.22.0 5 months ago
goversion.txtar drop support for Go 1.20 8 months ago
help.txtar drop support for Go 1.20 8 months ago
implement.txtar strip struct tags when hashing structs for type identity 8 months ago
imports.txtar drop support for Go 1.20 8 months ago
init.txtar drop support for Go 1.20 8 months ago
ldflags.txtar drop support for Go 1.20 8 months ago
linker.txtar drop support for Go 1.20 8 months ago
linkname.txtar drop support for Go 1.20 8 months ago
list_error.txtar drop support for Go 1.20 8 months ago
literals.txtar fix shuffle obfuscation compiler optimization 7 months ago
modinfo.txtar drop support for Go 1.20 8 months ago
plugin.txtar drop support for Go 1.20 8 months ago
position.txtar drop support for Go 1.20 8 months ago
reflect.txtar track types used in make assigned to a reflected type 7 months ago
reverse.txtar track converted types when recording reflection usage 8 months ago
run.txtar drop support for Go 1.20 8 months ago
seed-cache.txtar drop support for Go 1.20 8 months ago
seed.txtar drop support for Go 1.20 8 months ago
syntax.txtar avoid panic when embedding a builtin alias 8 months ago
test.txtar drop support for Go 1.20 8 months ago
tiny.txtar drop support for Go 1.20 8 months ago
typeparams.txtar drop support for Go 1.20 8 months ago