lib/libvhd.so: undefined reference to `uuid_generate' lib/libvhd.so: undefined reference to `uuid_copy' lib/libvhd.so: undefined reference to `uuid_is_null' lib/libvhd.so: undefined reference to `uuid_unparse' lib/libvhd.so: undefined reference to `uuid_clear' lib/libvhd.so: undefined reference to `uuid_compare' 主要是因为Makefile中的链接库少了 -luuid 比如: bug为 VHDLIBS := -L$(LIBVHDDIR) -lvhd 改正后为 VHDLIBS := -L$(LIBVHDDIR) -lvhd -luuid
xen-4.04 编译问题
最新推荐文章于 2022-08-17 15:40:37 发布
本文解决了一个关于libvhd.so中UUID相关函数的未定义引用错误,通过在Makefile中添加-luuid链接库成功修复了该问题。
8万+

被折叠的 条评论
为什么被折叠?



