我正在尝试设置 SCons 以遵循在构建期间自动生成的文件的依赖关系,并在多线程构建中正常工作。
我正在构建的项目是一个 CIM 提供程序,由定义数据结构的 MOF 文件、来自 MOF 文件的自动生成的源文件和头文件以及引用自动生成的文件的手写源文件和头文件组成。为了使构建成功,自动生成步骤必须在编译任何手写文件之前运行完成,否则手写文件所依赖的头文件将不存在并且它将失败。由自动生成步骤创建的 .cpp 文件也必须添加到源列表并在最终构建中编译。
运行单线程构建时,一切正常,因为自动生成步骤总是在编译步骤之前完成,所以生成的头文件就位。但是,在多线程运行构建时,它会在自动生成步骤完成之前尝试编译手写文件,并且构建失败。我已经指定了一个明确的依赖关系,但 SCons 没有遵循它。
这是我的 SConscript 文件的相关部分,我从 cim_targets[] 中删除了单个文件名,因为列表非常长,但总而言之,cim_targets[] 是自动生成步骤的目标输出文件列表,provider_sources[] 是返回的autogen 步骤完成后的源列表,sources[] 是手写源文件的列表,GenProvider() 是外部定义的执行自动生成步骤的命令构建器,SharedLibrary() 是外部定义的构建器, 使用带有一些扩展的 SCons 库构建器
# Define directory paths for the CIM schema
cim_dir = 'cim-schema-2.26.0'
var_smis_dir = Dir('.').abspath # src/lib/XXX in variant
cim_sources = [
Glob(os.path.join(cim_dir, '*qualifiers*.mof')),
Glob(os.path.join(cim_dir, 'Core') + '/CIM_*.mof'),
Glob(os.path.join(cim_dir, 'Device') + '/CIM_*.mof'),
Glob(os.path.join(cim_dir, 'Event') + '/CIM_*.mof'),
Glob(os.path.join(cim_dir, 'XXXXXX') + '/XXX_*.mof'),
Glob(os.path.join(cim_dir, 'Interop') + '/CIM_*.mof'),
Glob(os.path.join(cim_dir, 'Physical') + '/CIM_*.mof'),
Glob(os.path.join(cim_dir, 'System') + '/CIM_*.mof'),
]
cim_sources_flat = []
for cim in cim_sources:
for src in cim:
cim_sources_flat.append(src)
cim_targets = [
......
]
sources = [
'driver.cpp',
'device.cpp',
'cim_static_data.cpp',
'module.cpp',
'diag_log.cpp',
'profile_element.cpp',
]
staticlibs = [
......
]
dynamiclibs = [
.....
]
var_cim_sources = this_env.Install(var_smis_dir, cim_sources_flat)
cim_mof = 'cimv226.mof'
cim_linux_mof = os.path.join(cim_dir, 'cimv226-gen-flat.mof')
var_cim_sources.extend(this_env.Command(cim_mof, cim_linux_mof, Copy('$TARGET', '$SOURCE')))
# first generate the provider infrastructure using cimple
provider_sources = this_env.GenProvider(cim_targets, var_cim_sources, name, var_smis_dir)
# make sure these files don't build until AFTER the provider files have been created
this_env.Depends(sources, provider_sources)
sources_full = provider_sources + sources
# now we can compile the provider
this_env.SharedLibrary(libname, source=sources_full, staticlibs=staticlibs, dynamiclibs=dynamiclibs, installpath=install_dir)
我尝试设置显式依赖项,以便在创建所有生成的源之前不会编译手写源(this_env.Depends(sources, provider_sources)),但是在运行多线程时,SCons 会忽略此依赖项并尝试在自动生成步骤已完成。