我正在尝试编译一个hello-world应用程序:
8g test1.go -o test1.8
错误:
open -o: No such file or directory
这里有讽刺意味着当我离开-o时这很好用。
8g test1.go
如何指定对象文件名以进入命令行编译器8g
?
(8g版本发布.r60 9481)
答案 0 :(得分:2)
当8g
运行时没有参数时,会输出如下内容:
gc: usage: 8g [flags] file.go...
flags:
...
-m print optimization decisions
-o file specify output file
-p assumed import path for this code
...
请注意[flags]
位于file.go
前面。传递参数时需要遵守此顺序。这与gcc
不同,后者以任何顺序接受选项和文件。
答案 1 :(得分:1)
基于文档
http://golangtutorials.blogspot.com/2011/05/checking-we-have-go-setup-right.html和
Multiline command.go in SciTE和
http://sourcetree.wordpress.com/tag/go/
你可以尝试
>8g test1.go
>8l -o test1.8
>./8.out
答案 2 :(得分:1)