简体   繁体   中英

Go build does not generate binary file from grumpy generated go code?

I wrote a HelloWorld.py and using grumpy , I compiled the HelloWorld.py to a Go source code.

The go build is executed successfully without any errors but there was no binary file found in the folder.

I need to know where I can found the binary file of my code.

It depends a bit on your directory setup. I think the simple answer is just to use the -o option to write it in your current directory.

go build -o mybin

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM