conan入门(十五):AttributeError: ‘CMake‘ object has no attribute ‘definitions‘

  • Post author:
  • Post category:其他




conan: AttributeError: ‘CMake’ object has no attribute ‘definitions’

如下是一个简单的使用

conan new



--template

参数指定模板为

cmake_exe

生成的构建exe程序的conan包定义脚本(参见我的上一篇博客

《conan new 命令的新特性–模板功能(–template)》

).

conanfile.py

from conans import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake
from conan.tools.layout import cmake_layout


class Bin2cConan(ConanFile):
    name = "bin2c"
    version = "1.0.0"

    # Optional metadata
    license = "BSD-2-Clause"
    author = "gwilymk 10km"
    url = "https://gitee.com/l0km/bin2c"
    description = "A simple utility for converting a binary file to a c application which can then be included within an application."
    topics = ("bin")

    # Binary configuration
    settings = "os", "compiler", "build_type", "arch"

    # Sources are located in the same place as this recipe, copy them to the recipe
    exports_sources = "CMakeLists.txt", "src/*"

    def layout(self):
        cmake_layout(self)

    def generate(self):
        tc = CMakeToolchain(self)
        tc.generate()

    def build(self):
        cmake = CMake(self)
        cmake.configure()
        cmake.build()

    def package(self):
        cmake = CMake(self)
        cmake.install()

    def configure(self):
        del self.settings.compiler.libcxx
        del self.settings.compiler.cppstd

原本一切都是正常的,

当我在build函数中调用

CMake.definitions

函数定义一个cmake变量

USE_BZ2

时,执行

conan create .

命令报错了

    def build(self):
        cmake = CMake(self)
        cmake.configure()
        cmake.definitions["USE_BZ2"] = False
        cmake.build()

错误输出如下:

$ conan create .
Exporting package recipe
bin2c/1.0.0 exports_sources: Copied 1 '.txt' file: CMakeLists.txt
bin2c/1.0.0 exports_sources: Copied 1 '.c' file: bin2c.c
bin2c/1.0.0: The stored package has not changed
bin2c/1.0.0: Exported revision: b6fb6e6ab5a27e021f31f7048ca1ea66
Configuration:
[settings]
arch=x86_64
arch_build=x86_64
build_type=Release
compiler=Visual Studio
compiler.runtime=MD
compiler.version=14
os=Windows
os_build=Windows
[options]
[build_requires]
[env]

bin2c/1.0.0: Forced build from source
bin2c/1.0.0 (test package): Installing package
Requirements
    bin2c/1.0.0 from local cache - Cache
Packages
    bin2c/1.0.0:63da998e3642b50bee33f4449826b2d623661505 - Build

Installing (downloading, building) binaries...
bin2c/1.0.0: Copying sources to build folder
bin2c/1.0.0: Building your package in C:\Users\guyadong\.conan\data\bin2c\1.0.0\_\_\build\63da998e3642b50bee33f4449826b2d623661505
bin2c/1.0.0: Generator txt created conanbuildinfo.txt
bin2c/1.0.0: Calling generate()
bin2c/1.0.0: Aggregating env generators
bin2c/1.0.0: Calling build()
bin2c/1.0.0:
bin2c/1.0.0: WARN: Build folder is dirty, removing it: C:\Users\guyadong\.conan\data\bin2c\1.0.0\_\_\build\63da998e3642b50bee33f4449826b2d623661505
bin2c/1.0.0: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
bin2c/1.0.0: ERROR: Package '63da998e3642b50bee33f4449826b2d623661505' build failed
bin2c/1.0.0: WARN: Build folder C:\Users\guyadong\.conan\data\bin2c\1.0.0\_\_\build\63da998e3642b50bee33f4449826b2d623661505\build
ERROR: bin2c/1.0.0: Error in build() method, line 32
        cmake.definitions["USE_BZ2"] = False
        AttributeError: 'CMake' object has no attribute 'definitions'


AttributeError: 'CMake' object has no attribute 'definitions'

意思就是说CMake这个对象中没有

definitions

这个成员。

这就太意外了。

按照Conan官方文档

《default_options》

,

《How to reuse cmake install for package() method》

以及其他已经发布到conan-center上的第三方库的脚本(如

cjson conanfile.py

)中都是这么用的啊?为啥?


因为此类非彼类.


conans.CMake



conan.tools.cmake.CMake

不是同一个类啊。


conans.CMake

是较早设计并已经被广泛使用的一个类,有

definitions

成员。

按Conan官方说明

conan.tools.cmake

是比较新的还在实验阶段的一个功能,

conan.tools.cmake.CMake

中并没

definitions

成员。

在这里插入图片描述

如果不指定

--template

参数使用

create new $pkgname/$version

生成的

conanfile.py

是引用的是

conans.CMake

如果指定

--template

参数使用

create new $pkgname/$version

生成的

conanfile.py

是引用的是

conan.tools.cmake.CMake



解决方案一

改回传统的引用

conans.CMake

,这需要较多修改conanfile.py脚本

  • 删除所有基于

    conan.tools.cmake

    包下的引用改为

    conans.CMake

  • 删除

    layout,generate

    函数

下图显示修改对比

在这里插入图片描述



解决方案二

使用conan.tools.cmake.CMakeToolchain类的variables成员代替

conans.CMake

类的

definitions

成员

只需要在generate函数中增加一行代码

    def generate(self):
        tc = CMakeToolchain(self)
        tc.variables["USE_BZ2"] = False
        tc.generate()

参见

《variables》

下图显示修改对比

在这里插入图片描述

两种方式各有好处,你可以根据自己的需要选择


conan.tools.cmake

这个实验包应该会在conan 2.0变为正式的,如果你和我一样也是刚conan入门,建议使用

解决方案一

,以避免今后使用中遇到其他与官方参考不一致的问题。



conan系列文章


《conan入门(一):conan 及 JFrog Artifactory 安装》



《conan入门(二):conan 服务配置-密码管理及策略》



《conan入门(三):上传预编译的库(artifact)》



《conan入门(四):conan 引用第三方库示例》



《conan入门(五):conan 交叉编译引用第三方库示例》



《conan入门(六):conanfile.txt conanfile.py的区别》



《conan入门(七):将自己的项目生成conan包》



《conan入门(八):交叉编译自己的conan包项目》



《conan入门(九):NDK交叉编译自己的conan包项目塈profile的定义》



《conan入门(十):Windows下Android NDK交叉编译Boost》



《conan入门(十一):Linux下Android NDK交叉编译Boost》



《conan入门(十二):Windows NDK 编译 boost报错:CMake was unable to find a build program … MinGW Makefile》



《conan入门(十三):conan info 命令的基本用法》



《conan入门(十四):conan new 命令的新特性–模板功能(–template)》



《conan入门(十五):AttributeError: ‘CMake‘ object has no attribute ‘definitions‘》



《conan入门(十六):profile template功能实现不同平台下profile的统一》



《conan入门(十七):支持android NDK (armv7,armv8,x86,x86_64)交叉编译的统一profile jinja2模板》



《conan入门(十八):Cannot recognize the Windows subsystem, install MSYS2/cygwin or specify a build_require》



《conan入门(十九):封装第三方开源库cpp_redis示例》



《conan入门(二十):封装只包含头文件(header_only)的库示例》



《conan入门(二十一):解决MinGW编译Openssl的编译错误:crypto/dso/dso_win32.c》



《conan入门(二十二):编译 openssl要求python 3.7以上版本》



《conan入门(二十三):Windows下MinGW编译libcurl》



《conan入门(二十四):通过CONAN_DISABLE_CHECK_COMPILER禁用编译器检查》



《conan入门(二十五):imports将包安装到本地项目或其他指定位置》



版权声明:本文为10km原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。