在Alpine上编译Mongo

时间:2015-05-03 00:23:45

标签: linux mongodb busybox alpine

我正在尝试在Alpine Linux上编译Mongo。

有人知道如何解决这个错误吗?

In file included from src/mongo/util/net/socket_poll.h:20:0,
                 from src/mongo/util/net/sock.cpp:42:
/usr/include/sys/poll.h:1:2: error: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> [-Werror=cpp]
 #warning redirecting incorrect #include <sys/poll.h> to <poll.h>
  ^
cc1plus: all warnings being treated as errors
scons: *** [build/linux2/normal/mongo/util/net/sock.o] Error 1
scons: building terminated because of errors.

1 个答案:

答案 0 :(得分:3)

这来自构建系统添加-Werror标志,因此编译器将警告视为错误并使构建失败。

您可能可以使用 ad hoc --disable-warnings-as-errors标记来完成此步骤。