开发者

How difficult is it to compile the Go programming language?

开发者 https://www.devze.com 2022-12-15 03:20 出处:网络
Basically what the title says: what\'s the process for compiling your average go* file? drop it on a compiler and execute the result?

Basically what the title says: what's the process for compiling your average go* file? drop it on a compiler and execute the result?


开发者_如何学运维

*note: The OP edited the question replacing "go" with "C", before it was rolled back. So some of the answers won't make sense.


Did you take a look at the Go tutorial at http://golang.org/doc/go_tutorial.html

    Here's how to compile and run our program. With 6g, say,

        $ 6g helloworld.go  # compile; object goes into helloworld.6
        $ 6l helloworld.6   # link; output goes into 6.out
        $ 6.out
        Hello, world; or Καλημέρα κόσμε; or こんにちは 世界
        $

    With gccgo it looks a little more traditional.

        $ gccgo helloworld.go
        $ a.out
        Hello, world; or Καλημέρα κόσμε; or こんにちは 世界
0

精彩评论

暂无评论...
验证码 换一张
取 消