来自基本测试程序。。。
package main
/*
#include <stdio.h>
static void test() {
printf("hello world");
}
*/
import "C"
func main() {
C.test();
}
我做“ cgo hello_cgo.go”并得到:
_cgo_.o
_cgo_defun.c
_cgo_gotypes.go
hello_cgo.cgo1.go
hello_cgo.cgo2.c
我该如何从这里编译到exe?
慕的地6264312
相关分类