--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Sorry, the use of the built in c compiler, 6c is going away in go 1.4. What that package does is no longer supported.
"C source files not allowed when not using cgo"
#ifdef __STDC__
<source code here>
#endif
Try
// +build none
At the top of the file. I've written a but about the rules for build tags here, http://dave.cheney.net/2013/10/12/how-to-use-conditional-compilation-with-the-go-build-tool