Hi all
I want to build a dynamic go library with gollvm.
How could I do this?
Thank you.
--
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+unsubscr...
Hi, I have the following program
package main
/*
#include
static void SayHello(const char* s) {
puts(s);
}
*/
import "C"
func main() {
C.SayHello(C.CString("Hello, World\n"))
}
I want to compile this program to LLVM IR with gollvm, the compilation
instruction is as follows:
llvm-goc