Sign in
go
/
go
/
master
/
.
/
src
/
cmd
/
link
/
testdata
/
script
/
script_test_basics.txt
blob: ecc28951a1e58dde629dfda46a2efa47b4dd3036 [
file
] [
log
] [
blame
]
# Test of the linker's script test harness.
go build
[!cgo] skip
cc -c testdata/mumble.c
-- go.mod --
module main
go 1.20
-- main.go --
package main
func main() {
println("Hi mom!")
}
-- testdata/mumble.c --
int x;