On 2017-06-26 09:37, st ov wrote:
Ruby has Gems and .NET has DLLs.
How do you package and share libraries in Go?

Gems are mainly source files, right? ... Using
source libraries in Go is relatively straight forward.
For your "package main" programs the easiest is to put the
library source in "vendor" - maybe using some vendoring tool. (of which there are many)

Using .so files to dynamically link to compiled shared libraries are somewhat in it's infancy in Go.

One of the problems for real use is:

https://github.com/golang/go/issues/19233

/Peter

--
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to