Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix configure options of FFLAS-FFPACK #20052

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ description = "Finite Field Linear Algebra Subroutines / Package"

toolchain = {'version': '2016a', 'name': 'foss'}

sources = ['v%(version)s.zip']
source_urls = ['https://github.com/linbox-team/fflas-ffpack/archive']
sources = ['v%(version)s.zip']
checksums = ['4110e72004f88e9d6f90e503129a4ef7a3bd55b55aec992e109b3647a8445fa2']

builddependencies = [
('Autotools', '20150215'),
]
dependencies = [
('GMP', '6.1.0'),
('Givaro', '4.0.1'),
]

preconfigopts = "env NOCONFIGURE=1 ./autogen.sh && "
configopts = '--with-gmp=$EBROOTGMP --with-givaro=$EBROOTGIVARO'
configopts = '--with-givaro=$EBROOTGIVARO'
configopts += ' --with-blas-cflags="-I$BLAS_INC_DIR" --with-blas-libs="-L$BLAS_LIB_DIR $LIBBLAS" --enable-openmp'

sanity_check_paths = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ source_urls = ['https://github.com/linbox-team/fflas-ffpack/releases/download/v%
sources = [SOURCELOWER_TAR_GZ]
checksums = ['dafb4c0835824d28e4f823748579be6e4c8889c9570c6ce9cce1e186c3ebbb23']

builddependencies = [('pkgconf', '1.8.0')]
dependencies = [
('GMP', '6.2.1'),
('Givaro', '4.2.0'),
]

configopts = '--with-blas-libs="$LIBBLAS_MT" --with-blas-cflags="-I$BLAS_INC_DIR" '
configopts += '--with-gmp=$EBROOTGMP --with-givaro=$EBROOTGIVARO --enable-openmp'
configopts += '--enable-openmp'

buildopts = " && make autotune "

Expand Down
Loading