我正在尝试在Windows上用柯南构建libjpeg-turbo
包:
conan install libjpeg-turbo/1.5.2@bincrafters/stable
但它失败了:
libjpeg-turbo/1.5.2@bincrafters/stable: Not found in local cache, looking in remotes...
libjpeg-turbo/1.5.2@bincrafters/stable: Trying with 'conan-center'...
Downloading conanmanifest.txt
Downloading conanfile.py
Downloading conan_export.tgz
....
ERROR: libjpeg-turbo/1.5.2@bincrafters/stable: Error in configure() method, line 43
if self.settings.os == "Emscripten":
ConanException: Invalid setting 'Emscripten' is not a valid 'settings.os' value.
Possible values are ['Android', 'Arduino', 'FreeBSD', 'Linux', 'Macos', 'SunOS', 'Windows', 'WindowsStore', 'iOS', 'tvOS', 'watchOS']
Read "http://docs.conan.io/en/latest/faq/troubleshooting.html#error-invalid-setting"
Linux 上的相同命令工作正常。 在两个系统上,我在 1.21.0 版中都有柯南
我找不到有关此错误的任何线索。
编辑
以下是 libjpeg-turbo 在 2.0.2 版安装中的完整输出:
>conan install -r conan-center libjpeg-turbo/2.0.2@
Configuration:
[settings]
arch=x86
arch_build=x86
build_type=Release
compiler=Visual Studio
compiler.runtime=MD
compiler.version=15
os=Windows
os_build=Windows
[options]
[build_requires]
[env]
ERROR: libjpeg-turbo/2.0.2: Error in configure() method, line 49
if self.settings.os == "Emscripten":
ConanException: Invalid setting 'Emscripten' is not a valid 'settings.os
' value.
Possible values are ['Android', 'Arduino', 'FreeBSD', 'Linux', 'Macos', 'SunOS',
'Windows', 'WindowsStore', 'iOS', 'tvOS', 'watchOS']
Read "http://docs.conan.io/en/latest/faq/troubleshooting.html#error-invalid-sett
ing"
柯南软件包libjpeg-turbo/1.5.2@bincrafters/stable已经过时,已被libjpeg-turbo/2.0.2@取代。您也可以从柯南中心获取该软件包:
conan install -r conan-center libjpeg-turbo/2.0.2@
现在关于你的错误:
柯南异常:无效的设置"Emscripten"不是有效的"settings.os"值。
如您所见,您当前的settings.os配置为该配方不支持的Emscripten
。如常见问题解答链接所示,您应该自定义当前设置,因此您可以尝试:
conan install -r conan-center libjpeg-turbo/2.0.2@ -s os=Windows
因此,您应该:
- 将您当前的软件包更新为 libjpeg-turbo/2.0.2@(它需要 Conan>=1.18(
将您当前的配置文件更新到 Windows:
conan profile update settings.os=Windows default
如果您确实需要Emscripten
,请向柯南中心索引提出请求此类功能的问题。
问候!