9ce21b5276
`zig cc` emits `--gc-sections` for the linker, which is incompatbile with what CGo thinks about linking. This commit adds a workaround: it will add `--no-gc-sections` to the linking step if the command is not specified (falling back to the default behavior of gcc/clang). Related: https://github.com/golang/go/issues/52690
18 lines
331 B
Go
18 lines
331 B
Go
package main
|
|
|
|
// #define _FILE_OFFSET_BITS 64
|
|
// #include <unistd.h>
|
|
// #include <fcntl.h>
|
|
// #include <stdio.h>
|
|
// char* hello() { return "hello, world"; }
|
|
// void phello() { printf("%s, your lucky number is %p\n", hello(), fcntl); }
|
|
import "C"
|
|
|
|
func main() {
|
|
C.phello()
|
|
}
|
|
|
|
func Chello() string {
|
|
return C.GoString(C.hello())
|
|
}
|