“operator/”不是“std::filesystem”的成员;你是说‘接线员~’吗
‘operator/’ is not a member of ‘std::filesystem’; did you mean ‘operator~'
我正在尝试安装 MMMTools https://mmm.humanoids.kit.edu/installation.html。我的 cmake 版本是 3.16.3。直到这个部分我都经历了每一步,没有任何错误
cd ~/MMMCore
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
make
命令 returns 出现以下错误。
(base) kong@kong-Standard:~/MMMCore/build$ make
[ 1%] Building CXX object CMakeFiles/MMMCore.dir/MMM/XMLTools.cpp.o
/home/kong/MMMCore/MMM/XMLTools.cpp: In function ‘void MMM::XML::makeAbsolutePath(const string&, std::string&)’:
/home/kong/MMMCore/MMM/XMLTools.cpp:650:64: error: ‘operator/’ is not a member of ‘std::filesystem’; did you mean ‘operator~’?
650 | std::filesystem::path filenameNewComplete = std::filesystem::operator/(filenameBasePath, filenameNew);
| ^~~~~~~~~
| operator~
make[2]: *** [CMakeFiles/MMMCore.dir/build.make:76: CMakeFiles/MMMCore.dir/MMM/XMLTools.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:295: CMakeFiles/MMMCore.dir/all] Error 2
make: *** [Makefile:163: all] Error 2
但我用 google 搜索了该函数,发现它是 std::filesystem https://en.cppreference.com/w/cpp/filesystem/path/operator_slash 的成员。出了什么问题?
我浏览了 CMakeLists.txt 并看到了这个。
###########################################################
#### Compiler configuration ####
###########################################################
set(CMAKE_POSITION_INDEPENDENT_CODE ON) # enable -fPIC
if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /MP")
elseif(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
# cmake 3.10 does not understand c++2a, so we tell it we will handle the standard flag
set(CMAKE_CXX_STANDARD_DEFAULT)
add_definitions(-std=c++2a)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -pedantic")
endif()
add_compile_options(-Werror)
我在 Ubuntu 20.04 上编译它,所以我猜它进入了 elseif 部分。这是否意味着它没有使用 C++17?我是否需要编辑 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -pedantic")
行以使其使用 C++17?
该指南表明它适用于 18.04,但由于问题出在 C++17 上,我认为问题不在于使用 20.04 吗?
由于 LWG 3065 运算符现在已隐藏,不应直接调用。
std::filesystem::path filenameNewComplete = std::filesystem::operator/(filenameBasePath, filenameNew);
应该只是:
std::filesystem::path filenameNewComplete = filenameBasePath / filenameNew;
我猜代码只针对较旧的实现进行了测试(看起来这是在 gcc/libstdc++ 9 中实现的)而不是你正在使用的,我不知道为什么不过一开始写的太复杂了
我正在尝试安装 MMMTools https://mmm.humanoids.kit.edu/installation.html。我的 cmake 版本是 3.16.3。直到这个部分我都经历了每一步,没有任何错误
cd ~/MMMCore
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
make
命令 returns 出现以下错误。
(base) kong@kong-Standard:~/MMMCore/build$ make
[ 1%] Building CXX object CMakeFiles/MMMCore.dir/MMM/XMLTools.cpp.o
/home/kong/MMMCore/MMM/XMLTools.cpp: In function ‘void MMM::XML::makeAbsolutePath(const string&, std::string&)’:
/home/kong/MMMCore/MMM/XMLTools.cpp:650:64: error: ‘operator/’ is not a member of ‘std::filesystem’; did you mean ‘operator~’?
650 | std::filesystem::path filenameNewComplete = std::filesystem::operator/(filenameBasePath, filenameNew);
| ^~~~~~~~~
| operator~
make[2]: *** [CMakeFiles/MMMCore.dir/build.make:76: CMakeFiles/MMMCore.dir/MMM/XMLTools.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:295: CMakeFiles/MMMCore.dir/all] Error 2
make: *** [Makefile:163: all] Error 2
但我用 google 搜索了该函数,发现它是 std::filesystem https://en.cppreference.com/w/cpp/filesystem/path/operator_slash 的成员。出了什么问题?
我浏览了 CMakeLists.txt 并看到了这个。
###########################################################
#### Compiler configuration ####
###########################################################
set(CMAKE_POSITION_INDEPENDENT_CODE ON) # enable -fPIC
if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /MP")
elseif(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
# cmake 3.10 does not understand c++2a, so we tell it we will handle the standard flag
set(CMAKE_CXX_STANDARD_DEFAULT)
add_definitions(-std=c++2a)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -pedantic")
endif()
add_compile_options(-Werror)
我在 Ubuntu 20.04 上编译它,所以我猜它进入了 elseif 部分。这是否意味着它没有使用 C++17?我是否需要编辑 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -pedantic")
行以使其使用 C++17?
该指南表明它适用于 18.04,但由于问题出在 C++17 上,我认为问题不在于使用 20.04 吗?
由于 LWG 3065 运算符现在已隐藏,不应直接调用。
std::filesystem::path filenameNewComplete = std::filesystem::operator/(filenameBasePath, filenameNew);
应该只是:
std::filesystem::path filenameNewComplete = filenameBasePath / filenameNew;
我猜代码只针对较旧的实现进行了测试(看起来这是在 gcc/libstdc++ 9 中实现的)而不是你正在使用的,我不知道为什么不过一开始写的太复杂了