柯南在Windows声明设置未设置,它已设置



我正在尝试将一个程序从Linux移植到windows。该程序是用conan构建的。

目前我运行:

conan install . -if build -s build_type=Debug 

我得到这个错误:

ERROR: : 'settings.compiler.cppstd' value not defined

我的conan.py里有这个:

class ConanFileNeverEngine(ConanFile):
generators = "pkg_config"
requires = [
"eigen/3.4.0",
"libffi/3.4.2", # Not sure why but without this wayland causes a conflict.
"wayland/1.19.0",
"glfw/3.3.4",
"shaderc/2019.0",
"freetype/2.10.4",
"eigen/3.4.0",
"harfbuzz/2.8.2",
"vulkan-memory-allocator/2.3.0",
"gtest/1.10.0",
"benchmark/1.5.3",
"tinygltf/2.5.0",
"stb/20200203",
"vulkan-headers/1.2.182",
"vulkan-validationlayers/1.2.182",
"cereal/1.3.0"
]

settings = {
"os": None,
"compiler" : None,
"cppstd": ["20"],
"build_type" : None}
....

我还尝试手动设置:

def config_options(self):
# self.output.warn("test")
self.settings.compiler.cppstd = "20"
self.settings.compiler.runtime = "dynamic"
if os_info.is_linux:
if os_info.linux_distro == 'ubuntu':
window_system = os.environ['XDG_SESSION_TYPE']
if window_system == 'wayland':
self.output.error("System is using wayland, switch to x11.")

我得到了完全相同的错误。

我不明白我在设定这个值。

设置是项目范围的外部配置,不能在conanfile.py文件中定义或分配值。

设置是在您的个人资料中定义的,如";默认";,当你键入conan install时,你可以看到它被打印出来,类似于:

Configuration:
[settings]
arch=x86_64
arch_build=x86_64
build_type=Release
compiler=Visual Studio

您可以检查您定义的值是否不存在,因为您稍后将尝试定义其值。

所以你可以:

  • 在一个配置文件中定义compiler.cppstd。";默认";一个,或您自己的自定义配置文件(您可以使用conan config install命令共享配置文件(
  • 请注意,您可以设置每个包的设置,如果需要,可以使用mypkg:compiler.cppstd=xxx,通常是作为例外,因为设置是针对整个项目的
  • 在命令行-s compiler.cppstd=xxx中传递

这是因为";recipes/conanfile";描述事情是如何完成的,但它们是通用的,它们应该适用于任何配置。特定的配置值,如cppstd或使用的编译器,必须在配方外部。

compiler=msvc
compiler.version=193
compiler.cppstd=17
compiler.runtime=dynamic

添加此值

compiler.cppstd=17

在默认配置文件中

C:Users<user name>.conanprofilesdefault

相关内容

  • 没有找到相关文章

最新更新