目前,我尝试在我们的项目中加入柠檬库。大多数开发人员都在 Windows 上,他们使用 MSVC 编译,但我负责(这部分)使用 gcc 和 clang 编译。
我遇到了一个 gcc 无法重现的 clang 错误,我设法减少了代码:
#include <lemon/dfs.h>
int main() {
lemon::ListDigraph g{};
lemon::ListDigraph::Node node = g.nodeFromId(42);
lemon::Dfs<lemon::ListDigraph> dfs{g};
lemon::SimplePath<lemon::ListDigraph> path = dfs.path(node);
return 0;
}
使用 gcc,没有错误。
/usr/bin/g++-5 -std=c++11 -Wall -O3 -I${SRC_ROOT}/external/lemon/latest -I${BIN_ROOT}/lemon -o ${TMP_ROOT}/core/src/core.cpp.o -c ${SRC_ROOT}/core/src/core.cpp
但是随着叮当声:
/usr/bin/clang++-3.7 -std=c++11 -Wall -stdlib=libc++ -O3 -I${SRC_ROOT}/external/lemon/latest -I${BIN_ROOT}/lemon -o ${TMP_ROOT}/core/src/core.cpp.o -c ${SRC_ROOT}/core/src/core.cpp
In file included from ${SRC_ROOT}/core/src/core.cpp:1:
In file included from ${SRC_ROOT}/external/lemon/latest/lemon/dfs.h:31:
${SRC_ROOT}/external/lemon/latest/lemon/path.h:408:23: error: no viable
conversion from 'typename PredMapPath<ListDigraph, NodeMap<Arc> >::RevArcIt' to
'lemon::ListDigraphBase::Arc'
data[index] = it;;
^~
备注:
SRC_ROOT
,BIN_ROOT
,TMP_ROOT
被替换为可读性- 片段源代码不起作用,但应该编译(我会更正真正的大代码)
- 我真的需要真正的源代码的 c++11 功能。
gcc
5clang
3.7lemon
1.3.1
问题:
- 我是不是忘记挂旗了?
- 柠檬与clang完全兼容吗?
- 如何解决这个错误?