コード例 #1
0
ファイル: atlas.py プロジェクト: gidden/fief
from fief import repo

interfaces = {'atlas': repo.ifc(requires='cc')}

realize = repo.c_realize

build_a = repo.configure_make_make_install(interfaces, libs='atlas', 
                                           configure_args='--shared')

コード例 #2
0
ファイル: openmpi.py プロジェクト: gidden/fief
from fief import repo

interfaces = {'mpi3': repo.ifc(requires='cc'),
              'mpi2': repo.ifc(requires='cc'),
              'mpi1': repo.ifc(requires='cc'),
              }

realize = repo.c_realize

build_a = repo.configure_make_make_install(interfaces, make_args='all')
コード例 #3
0
ファイル: mpich.py プロジェクト: gidden/fief
from fief import repo

interfaces = {'mpi3': repo.ifc(requires='cc'),
              'mpi2': repo.ifc(requires='cc'),
              'mpi1': repo.ifc(requires='cc'),
              }

realize = repo.c_realize

build_a = repo.configure_make_make_install(interfaces, libs=('mpich', 'fmpich', 
                                           'mpichcxx', 'mpichf90', 'mpl', 'opa'))