由于调用./waf
后出现链接错误,我目前在尝试使用ns-3中的gcrypt库中的代码时遇到问题。我正确安装了gcrypt,因为使用g++ test.cpp -o test -lgcrypt
进行编译时,以下程序可以正常工作。
#include <stdio.h>
#include <gcrypt.h>
int main(void)
{
char *s = "some text";
unsigned char *x;
unsigned i;
unsigned int l = gcry_md_get_algo_dlen(GCRY_MD_SHA256); /* get digest length (used later to print the result) */
gcry_md_hd_t h;
gcry_md_open(&h, GCRY_MD_SHA256, GCRY_MD_FLAG_SECURE); /* initialise the hash context */
gcry_md_write(h, s, strlen(s)); /* hash some text */
x = gcry_md_read(h, GCRY_MD_SHA256); /* get the result */
for (i = 0; i < l; i++)
{
printf("%02x", x[i]); /* print the result */
}
printf("\n");
return 0;
}
但是,在ns-3中复制此代码会产生多个错误,其类型与链接时的以下错误类似:
/home/xxx/Desktop/ns-allinone-3.28.1/ns-3.28.1/build/../scratch/ns3consensus/AppCons.cc:251: undefined reference to `gcry_md_get_algo_dlen'
此外,ns-3本身似乎可以识别出已安装gcrypt,因为./waf configure
的输出表明gcrypt库已与Gcrypt library : enabled
一起安装。
我已根据https://www.nsnam.org/wiki/HOWTO_use_ns-3_with_other_libraries的建议在顶级脚本conf.env.append_value("LINKFLAGS", ["-lgcrypt"])
中添加了wscript,但是问题仍然存在。我是否还需要添加wscript或我缺少的其他一些链接基础知识?
答案 0 :(得分:2)
此问题的答案是waf
中如何包含库。
cfg.env.append_value('INCLUDES', ['/usr/local/include'])
添加conf.env.append_value('LIBPATH', ["/usr/local/lib"])
和use='gcrypt'
。