Fix new travis errors.
This commit is contained in:
parent
811557ed36
commit
b819a9e70e
@ -77,20 +77,20 @@ def cmake_args(self):
|
|||||||
spec['cbtf'].prefix) + ':' + join_path(spec['cbtf-krell'].prefix)
|
spec['cbtf'].prefix) + ':' + join_path(spec['cbtf-krell'].prefix)
|
||||||
|
|
||||||
cmake_args = [
|
cmake_args = [
|
||||||
'-DCMAKE_PREFIX_PATH=%s' % cmake_prefix_path,
|
'-DCMAKE_PREFIX_PATH=%s' % cmake_prefix_path,
|
||||||
'-DCUDA_DIR=%s' % spec['cuda'].prefix,
|
'-DCUDA_DIR=%s' % spec['cuda'].prefix,
|
||||||
'-DCUDA_INSTALL_PATH=%s' % spec['cuda'].prefix,
|
'-DCUDA_INSTALL_PATH=%s' % spec['cuda'].prefix,
|
||||||
'-DCUDA_TOOLKIT_ROOT_DIR=%s' % spec['cuda'].prefix,
|
'-DCUDA_TOOLKIT_ROOT_DIR=%s' % spec['cuda'].prefix,
|
||||||
'-DCUPTI_DIR=%s' % spec['cuda'].prefix.extras.CUPTI,
|
'-DCUPTI_DIR=%s' % spec['cuda'].prefix.extras.CUPTI,
|
||||||
'-DCUPTI_ROOT=%s' % spec['cuda'].prefix.extras.CUPTI,
|
'-DCUPTI_ROOT=%s' % spec['cuda'].prefix.extras.CUPTI,
|
||||||
'-DPAPI_ROOT=%s' % spec['papi'].prefix,
|
'-DPAPI_ROOT=%s' % spec['papi'].prefix,
|
||||||
'-DCBTF_DIR=%s' % spec['cbtf'].prefix,
|
'-DCBTF_DIR=%s' % spec['cbtf'].prefix,
|
||||||
'-DCBTF_KRELL_DIR=%s' % spec['cbtf-krell'].prefix,
|
'-DCBTF_KRELL_DIR=%s' % spec['cbtf-krell'].prefix,
|
||||||
'-DBOOST_ROOT=%s' % spec['boost'].prefix,
|
'-DBOOST_ROOT=%s' % spec['boost'].prefix,
|
||||||
'-DBoost_DIR=%s' % spec['boost'].prefix,
|
'-DBoost_DIR=%s' % spec['boost'].prefix,
|
||||||
'-DBOOST_LIBRARYDIR=%s' % spec['boost'].prefix.lib,
|
'-DBOOST_LIBRARYDIR=%s' % spec['boost'].prefix.lib,
|
||||||
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
||||||
'-DBoost_NO_SYSTEM_PATHS=ON']
|
'-DBoost_NO_SYSTEM_PATHS=ON']
|
||||||
|
|
||||||
# Adjust the standard cmake arguments to what we want the build
|
# Adjust the standard cmake arguments to what we want the build
|
||||||
# type, etc to be
|
# type, etc to be
|
||||||
|
@ -164,15 +164,15 @@ def cmake_args(self):
|
|||||||
# Add in paths for finding package config files that tell us
|
# Add in paths for finding package config files that tell us
|
||||||
# where to find these packages
|
# where to find these packages
|
||||||
cmake_args = [
|
cmake_args = [
|
||||||
'-DCBTF_DIR=%s' % spec['cbtf'].prefix,
|
'-DCBTF_DIR=%s' % spec['cbtf'].prefix,
|
||||||
'-DBINUTILS_DIR=%s' % spec['binutils'].prefix,
|
'-DBINUTILS_DIR=%s' % spec['binutils'].prefix,
|
||||||
'-DLIBMONITOR_DIR=%s' % spec['libmonitor'].prefix,
|
'-DLIBMONITOR_DIR=%s' % spec['libmonitor'].prefix,
|
||||||
'-DLIBUNWIND_DIR=%s' % spec['libunwind'].prefix,
|
'-DLIBUNWIND_DIR=%s' % spec['libunwind'].prefix,
|
||||||
'-DPAPI_DIR=%s' % spec['papi'].prefix,
|
'-DPAPI_DIR=%s' % spec['papi'].prefix,
|
||||||
'-DBOOST_DIR=%s' % spec['boost'].prefix,
|
'-DBOOST_DIR=%s' % spec['boost'].prefix,
|
||||||
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
||||||
'-DDYNINST_DIR=%s' % spec['dyninst'].prefix,
|
'-DDYNINST_DIR=%s' % spec['dyninst'].prefix,
|
||||||
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix]
|
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix]
|
||||||
|
|
||||||
# Add any MPI implementations coming from variant settings
|
# Add any MPI implementations coming from variant settings
|
||||||
self.set_mpi_cmakeOptions(spec, cmake_args)
|
self.set_mpi_cmakeOptions(spec, cmake_args)
|
||||||
|
@ -75,12 +75,12 @@ def cmake_args(self):
|
|||||||
spec['cbtf'].prefix) + ':' + join_path(spec['cbtf-krell'].prefix)
|
spec['cbtf'].prefix) + ':' + join_path(spec['cbtf-krell'].prefix)
|
||||||
|
|
||||||
cmake_args = [
|
cmake_args = [
|
||||||
'-DCBTF_DIR=%s' % spec['cbtf'].prefix,
|
'-DCBTF_DIR=%s' % spec['cbtf'].prefix,
|
||||||
'-DCBTF_KRELL_DIR=%s' % spec['cbtf-krell'].prefix,
|
'-DCBTF_KRELL_DIR=%s' % spec['cbtf-krell'].prefix,
|
||||||
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
||||||
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix,
|
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix,
|
||||||
'-DCMAKE_PREFIX_PATH=%s' % cmake_prefix_path,
|
'-DCMAKE_PREFIX_PATH=%s' % cmake_prefix_path,
|
||||||
'-DCMAKE_MODULE_PATH=%s' % join_path(
|
'-DCMAKE_MODULE_PATH=%s' % join_path(
|
||||||
prefix.share, 'KrellInstitute', 'cmake')]
|
prefix.share, 'KrellInstitute', 'cmake')]
|
||||||
|
|
||||||
# Adjust the standard cmake arguments to what we want the build
|
# Adjust the standard cmake arguments to what we want the build
|
||||||
|
@ -87,11 +87,11 @@ def cmake_args(self):
|
|||||||
# cbtf-krell build
|
# cbtf-krell build
|
||||||
# FIXME
|
# FIXME
|
||||||
cmake_args = [
|
cmake_args = [
|
||||||
'-DBoost_NO_SYSTEM_PATHS=TRUE',
|
'-DBoost_NO_SYSTEM_PATHS=TRUE',
|
||||||
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix,
|
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix,
|
||||||
'-DBOOST_ROOT=%s' % spec['boost'].prefix,
|
'-DBOOST_ROOT=%s' % spec['boost'].prefix,
|
||||||
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
||||||
'-DCMAKE_MODULE_PATH=%s' % join_path(
|
'-DCMAKE_MODULE_PATH=%s' % join_path(
|
||||||
prefix.share, 'KrellInstitute', 'cmake')]
|
prefix.share, 'KrellInstitute', 'cmake')]
|
||||||
|
|
||||||
# Add in the standard cmake arguments
|
# Add in the standard cmake arguments
|
||||||
@ -103,11 +103,11 @@ def cmake_args(self):
|
|||||||
|
|
||||||
else:
|
else:
|
||||||
cmake_args = [
|
cmake_args = [
|
||||||
'-DBoost_NO_SYSTEM_PATHS=TRUE',
|
'-DBoost_NO_SYSTEM_PATHS=TRUE',
|
||||||
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix,
|
'-DXERCESC_DIR=%s' % spec['xerces-c'].prefix,
|
||||||
'-DBOOST_ROOT=%s' % spec['boost'].prefix,
|
'-DBOOST_ROOT=%s' % spec['boost'].prefix,
|
||||||
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
'-DMRNET_DIR=%s' % spec['mrnet'].prefix,
|
||||||
'-DCMAKE_MODULE_PATH=%s' % join_path(
|
'-DCMAKE_MODULE_PATH=%s' % join_path(
|
||||||
prefix.share, 'KrellInstitute', 'cmake')]
|
prefix.share, 'KrellInstitute', 'cmake')]
|
||||||
|
|
||||||
# Add in the standard cmake arguments
|
# Add in the standard cmake arguments
|
||||||
|
Loading…
Reference in New Issue
Block a user