When trying to get and build goose on OS X 10.10.3 using go get bitbucket.org/liamstask/goose/cmd/goose
I get this error:
Undefined symbols for architecture x86_64:
"_SecKeychainItemExport", referenced from:
_FetchPEMRoots in 000001.o
"_SecTrustCopyAnchorCertificates", referenced from:
_FetchPEMRoots in 000001.o
ld: symbol(s) not found for architecture x86_64
I figure this error being due to the Security framework in OS X not being linked. Some possibly related info here: https://github.com/golang/go/issues/11258
So, how can I link to this library explicitly? Or is there something else I am missing?
Thankful for help!