我正在尝试在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.
这来自构建系统,添加了-Werror
标志,因此编译器将警告视为错误并使构建失败。
您可能可以使用 ad hoc --disable-warnings-as-errors
flag。