Recently I have spent some time on cgo and how to write C codes in go. It seems very easy to load a .so file by using #cgo directives. However, are there any ways that we can do this in a opposite way? That is, can we build a go package to a .so or .a file so that it can be used by c/c++ projects directly?
Asked
Active
Viewed 323 times
1 Answers
3
The answer is Go code can't be dynamically loaded into C code yet.
There is some activity on making this possible, but it isn't ready now.

Nick Craig-Wood
- 52,955
- 12
- 126
- 132