Mac golang vscode Fabric测试用例debug。 运行main函数 找不到ltdl.h
github.com/hyperledger/fabric/vendor/github.com/miekg/pkcs11
../../work/src/github.com/hyperledger/fabric/vendor/github.com/miekg/pkcs11/pkcs11.go:26:10: fatal error: 'ltdl.h' file not found
include <ltdl.h>
^~~~~~~~
1 error generated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ubuntu
centos
MAC系统
安装libtool就可以了,步骤如下:
先安装brew类似于apt-get
wget http://ftpmirror.gnu.org/libt...
tar -zxvf libtool-2.4.6.tar
cd libtool-2.4.6
brew install automake
./configure --prefix=/usr
sudo make && sudo make install