gpt4 book ai didi

c++ - 如何在 conanfile.txt 中设置编译器和 arch?

转载 作者:搜寻专家 更新时间:2023-10-31 02:06:19 25 4
gpt4 key购买 nike

如何在 conanfile.txt 中设置编译器和 arch 设置?我试着把它放进

[settings]
arch=x86

但我得到了 Unrecognized field: settings。我该怎么做?

最佳答案

您可能会将 conanfile.txt 与配置文件混淆。 Here是解释如何格式化和使用配置文件的链接。

名为 myprofile 的文件:

[env]
# Where is our C compiler
CC=/usr/bin/x86_64-w64-mingw32-gcc
# Where is our CPP compiler
CXX=/usr/bin/x86_64-w64-mingw32-g++

[settings]
# We are building in Ubuntu Linux
os_build=Linux
arch_build=x86_64

# We are cross building to Windows
os=Windows
arch=x86_64
compiler=gcc
# Adjust to the gcc version of your MinGW package
compiler.version=6.3
compiler.libcxx=libstdc++11
build_type=Release

你可以这样使用它:

$ conan install --profile /abs/path/to/myprofile  # abs path
$ conan install --profile ./relpath/to/myprofile # resolved to current dir
$ conan install --profile myprofile # resolved to user/.conan/profiles/myprofile

关于c++ - 如何在 conanfile.txt 中设置编译器和 arch?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50487908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com