我正在尝试在 EC2 上组装一个 AMI,目前在构建 0mq 时停滞不前。
最初,我在运行 ./configure 时遇到此错误
checking for uuid_generate in -luuid... no
configure: error: cannot link with -luuid, install uuid-dev.
我通过 yum 安装了 e2fsprogs-devel 和 linux-utils,我相信其中包含所需的库,但仍然出现上述错误。我随后用 yum 安装了 uuid-devel 并没有进一步。
然后,我创建了一个链接,如下所示:
sudo ln -s /lib64/libuuid.so.1.3.0 /lib64/libuuid.so
现在 ./configure 愉快地完成了,但是当我运行 make 时出现错误
[...]
CXX libzmq_la-signaler.lo
CXX libzmq_la-socket_base.lo
In file included from socket_base.cpp:50:
uuid.hpp:31:23: error: uuid/uuid.h: No such file or directory
In file included from socket_base.cpp:50:
uuid.hpp:92: error: 'uuid_t' in namespace '::' does not name a type
make[2]: *** [libzmq_la-socket_base.lo] Error 1
make[2]: Leaving directory `/home/this/infrastructure/zeromq2-2/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/this/infrastructure/zeromq2-2/src'
make: *** [all-recursive] Error 1
以下是 /usr/include/uuid.h 的开头,如果有用的话。
#ifndef __UUID_H__
#define __UUID_H__
/* workaround conflicts with system headers */
#define uuid_t __vendor_uuid_t
#define uuid_create __vendor_uuid_create
#define uuid_compare __vendor_uuid_compare
#include <sys/types.h>
#include <unistd.h>
#undef uuid_t
#undef uuid_create
#undef uuid_compare
在这一点上,我很困惑。