# pragma message("Unknown compiler version - please run the configure tests and report the results") # endif #endif 就是说Boost库都有对VS最高版本的一个匹配,1.48版本以下,最高可适用到VS2010 所以即便我用VS2012编译了Boost1.42库,在链接到MongoDB库时,限于Boost库的定义,只能去找VC100的库。
-// last known and checked version is 1400 (VC8): -#if (_MSC_VER > 1400) +// last known and checked version is 1500 (VC9): +#if (_MSC_VER > 1500) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" #...
Unknown compiler version - please run the configure tests and report the results compile-c-c++ bin.v2\libs\filesystem\build\msvc-14.0\debug\link-static\threading-multi\unique_path.obj unique_path.cpp Unknown compiler version - please run the configure tests and report the results compile-c-c++ ...
I noticed that no toolset flag is passed tob2. There are discussions which suggest b2 gets the compiler toolchain fromCCandCXXenvironment variables. Environment Details Ubuntu 18.04 Conan version 1.29 aarch64-linux-gnu-g++ (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0 Tool install path: /usr/a...
Unknown compiler version - please run the configure tests and report the results compile-c-c++ bin.v2\libs\chrono\build\msvc-14.0\debug\link-static\threading-multi\process_cpu_clocks.obj process_cpu_clocks.cpp Unknown compiler version - please run the configure tests and report the results ...
(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else # pragma message("Unknown compiler version - please run the configure tests and report the results") # endif #endif 本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/...
OS name + version: Arch Linux Rolling release CPU: - RAM: - Disk size: - Disk Type (HD/SDD): - Linux kernel version (uname -a): Linux arch 6.4.12-1-stable #1 SMP Wed, 23 Aug 2023 18:01:09 +0000 x86_64 GNU/Linux Compiler version (gcc --version): clang --version clang vers...
compiler a.cpp 这里要解释一下这种用法。 像上例,没有参数名的命令行选项,在这个库里称为“位置参数项”,也能处理。库能解释“a.cpp”等同于“--input-file=a.cpp”。下面是所需的附加的代码: po::positional_options_description p; p.add("input-file", -1); ...
cpp Unknown compiler version - please run the configure tests and report the results C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\cstddef(12): fatal error C1083: 无法打开包括文件:“stddef.h”: No such file or directory cl /Zm800 -nologo ...
compiler --input-file=a.cpp 1. 但通常情况常常这么写: compiler a.cpp 1. 这里要解释一下这种用法。 像上例,没有参数名的命令行选项,在这个库里称为“位置参数项”,也能处理。库能解释“a.cpp”等同于“--input-file=a.cpp”。下面是所需的附加的代码: ...