0

我正在尝试使用 gccgo 编译一个简单的 go 程序。我的代码使用 cgo 你,gccgo 无法编译它。这是我的代码(使用 go 编译器编译):

package main

// #include <stdio.h>
// #include <stdlib.h>
//
// static void myprint(char* s) {
//   printf("%s\n", s);
// }
import "C"
import "fmt"
func main(){
    fmt.Println("Start")
    cs := C.CString("Print from C")
    C.myprint(cs)
    fmt.Println("End")
}

当我使用我编译代码时gccgo main.go -o gccoutput

main.go:9:9: error: import file ‘C’ not found
 import "C"
         ^
main.go:13:8: error: reference to undefined name ‘C’
  cs := C.CString("Print from C")
        ^
main.go:14:2: error: reference to undefined name ‘C’
  C.myprint(cs)
  ^

任何想法如何解决这个问题?

编辑: 我正在尝试使用 gccgo 编译到 ppc,并且我不想使用 go 编译器的交叉编译过程。我试图做(如评论中所建议):

go build -compiler=gccgo

它奏效了。你,当我这样做时:

go build -comiler=powerpc-linux-gnu-gccgo main.go

我得到:

invalid value "powerpc-linux-gnu-gccgo" for flag -compiler: unknown compiler "powerpc-linux-gnu-gccgo"
usage: go build [-o output] [-i] [build flags] [packages]
Run 'go help build' for details.
4

0 回答 0