未定义参考 uuid_generate ubuntu
我已经使用下面的命令安装了 libuuid。
sudo apt-get install uuid-dev
并从终端正确安装。
然后,我包含
头文件。 但是,在调用函数 uuid-generate 时,它给出了引用错误
uuid_t newUUID;
uuid_generate(newUUID);
I have installed libuuid using the command below.
sudo apt-get install uuid-dev
And is properly installed from the terminal.
Then, i include <uuid/uuid.h>
header file.
But while calling function uuid-generate as under it is giving reference error
uuid_t newUUID;
uuid_generate(newUUID);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须链接到 libuuid(请参阅 /usr/lib/libuuid.so 和 /usr/lib/libuuid.a)。添加链接器选项 -luuid 以告诉链接器引用库文件。
You have to link against libuuid (see /usr/lib/libuuid.so and /usr/lib/libuuid.a). Add linker option -luuid to tell the linker to reference the library file.
我已经解决了上述问题。我没有使用终端来安装 uuid 生成器,而是遵循以下步骤:
I have resolved the above issue. Instead of using terminal to install the uuid generator, following is my step that i followed: