configure()

在配方中,configure() 方法应该用于配置设置和选项,以便在以后的不同方法(如 generate()build()package())中使用。此方法在构建依赖关系图并扩展包依赖关系时执行,这意味着当此方法执行时,依赖关系尚不存在,它们也不存在,并且无法访问 self.dependencies

例如,对于 C(而不是 C++)库,compiler.libcxxcompiler.cppstd 设置甚至不应该在 build() 期间存在。它们不仅不是 package_id 的一部分,而且根本不应该在构建过程中使用。它们将在配置文件中定义,因为图中的其他包可能是 C++ 包并需要它们,但此配方的责任是删除它们,以便它们不会在配方中使用。

settings = "os", "compiler", "build_type", "arch"

def configure(self):
    # Not all compilers have libcxx subsetting, so we use rm_safe
    # to avoid exceptions
    self.settings.rm_safe("compiler.libcxx")
    self.settings.rm_safe("compiler.cppstd")

def package_id(self):
    # No need to delete those settings here, they were already deleted
    pass

注意

从 Conan 2.4 开始,如果定义了 languages = "C" 配方属性(实验性),则上述 configure() 不需要。

对于要删除设置的每个子集的包,可以使用带有通配符的 rm_safe 方法

settings = "os", "compiler", "build_type", "arch"

def configure(self):
    self.settings.rm_safe("compiler.*")

这将删除 compiler 设置的所有子设置,例如 compiler.libcxxcompiler.cppstd,但保留 compiler 设置本身(self.settings.rm_safe("compiler") 将删除)。

同样,对于包含库的包,fPIC 选项实际上仅在库作为静态库编译时适用,但在其他情况下,fPIC 选项没有意义,因此应将其删除。

options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}

def configure(self):
    if self.options.shared:
        # fPIC might have been removed in config_options(), so we use rm_safe
        self.options.rm_safe("fPIC")

可用的自动实现

警告

此功能为实验性功能,可能会发生重大更改。有关更多信息,请参阅 Conan 稳定性 部分。

如果未定义 configure() 方法,则 Conan 可以自动管理 implements ConanFile 属性中指定的某些常规选项。

auto_shared_fpic

自动管理的选项

  • fPIC (True, False)。

  • shared (True, False)。

  • header_only (True, False)。

可以像这样添加到配方中

from conan import ConanFile

class Pkg(ConanFile):
    implements = ["auto_shared_fpic"]
    ...

然后,如果配方中未指定 configure() 方法,Conan 将在 configure 步骤中自动管理 fPIC 设置,如下所示

if conanfile.options.get_safe("header_only"):
    conanfile.options.rm_safe("fPIC")
    conanfile.options.rm_safe("shared")
elif conanfile.options.get_safe("shared"):
    conanfile.options.rm_safe("fPIC")

请注意,将此实现添加到配方中也可能会影响 configure 步骤。

如果您需要在配方中实现自定义行为,但也需要此逻辑,则必须显式声明它。

def configure(self):
    if conanfile.options.get_safe("header_only"):
        conanfile.options.rm_safe("fPIC")
        conanfile.options.rm_safe("shared")
    elif conanfile.options.get_safe("shared"):
        conanfile.options.rm_safe("fPIC")
    self.settings.rm_safe("compiler.libcxx")
    self.settings.rm_safe("compiler.cppstd")

配方可以为其依赖项选项建议值,如 default_options = {"*:shared": True},但这不可能有条件地进行。为此,也可以使用 configure() 方法。

def configure(self):
    if something:
        self.options["*"].shared = True

注意

最佳实践

  • 请记住,**不可能**在配方中定义 settingsconf 值,它们是只读的。

  • options 值的定义只是一个“建议”,根据图计算、优先级等,options 的最终值可能与配方设置的不同。

另请参阅