Skip to content
Snippets Groups Projects

feat: eic-spack dd4hep-pr1080

Merged Wouter Deconinck requested to merge eic-spack-dd4hep-pr1080 into master
Files
3
@@ -84,22 +84,43 @@ if __name__ == '__main__':
@@ -84,22 +84,43 @@ if __name__ == '__main__':
data_dir = '{}/share/{}'.format(prefix, det)
data_dir = '{}/share/{}'.format(prefix, det)
## build and install
## build and install
print(' - {}-{}'.format(det, cfg['version']))
print(' - {}-{}'.format(det, cfg['version']))
## clone/build/install detector libraries
## cleanup
cmd = ['rm -rf /tmp/build /tmp/det',
cmd = ['rm -rf /tmp/build /tmp/det']
'&&',
print(' '.join(cmd))
'git clone --depth 1 -b {version} {repo_grp}/{detector}.git /tmp/det'.format(
subprocess.check_call(' '.join(cmd), shell=True)
version=cfg['version'],
## clone
repo_grp=DETECTOR_REPO_GROUP,
cmd = [
detector=det),
'git clone --depth 1 -b {version} {repo_grp}/{detector}.git /tmp/det'.format(
'&&',
version=cfg['version'],
'cmake -B /tmp/build -S /tmp/det -DCMAKE_CXX_STANDARD=17',
repo_grp=DETECTOR_REPO_GROUP,
'-DCMAKE_CXX_FLAGS="-Wno-psabi"',
detector=det)
'-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache',
]
'-DCMAKE_INSTALL_PREFIX={prefix}'.format(prefix=prefix),
'&&',
'cmake --build /tmp/build -j$(($(($(nproc)/4))+1)) -- install']
print(' '.join(cmd))
print(' '.join(cmd))
subprocess.check_call(' '.join(cmd), shell=True)
subprocess.check_call(' '.join(cmd), shell=True)
 
## patches
 
if cfg.get('patches'):
 
for patch in cfg['patches']:
 
cmd = [f'curl -L {patch} | patch -p1 -d/tmp/det']
 
print(' '.join(cmd))
 
subprocess.check_call(' '.join(cmd), shell=True)
 
## build
 
cxxflags = ''
 
if cfg.get('cxxflags'):
 
cxxflags = cfg['cxxflags']
 
cmd = [
 
f'cmake -B /tmp/build -S /tmp/det -DCMAKE_CXX_STANDARD=17',
 
f'-DCMAKE_CXX_FLAGS="-Wno-psabi {cxxflags}"',
 
f'-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache',
 
f'-DCMAKE_INSTALL_PREFIX={prefix}'
 
]
 
print(' '.join(cmd))
 
subprocess.check_call(' '.join(cmd), shell=True)
 
## install
 
cmd = [
 
'cmake --build /tmp/build -j$(($(($(nproc)/4))+1)) -- install'
 
]
 
print(' '.join(cmd))
 
subprocess.check_output(' '.join(cmd), shell=True)
## write version info to jug_info if available
## write version info to jug_info if available
if os.path.exists('/etc/jug_info'):
if os.path.exists('/etc/jug_info'):
cmd = ['cd /tmp/det',
cmd = ['cd /tmp/det',
Loading