Skip to content

Commit

Permalink
fix issue with static linking in BLA
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenscholl committed Apr 11, 2021
1 parent f4f2cdc commit dc67f3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish-test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
echo "using python : 3.7 : /Users/runner/hostedtoolcache/Python/3.7.10/x64/bin/python : /Users/runner/hostedtoolcache/Python/3.7.10/x64/include/python3.7m/ : /Users/runner/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/ ;" >> project-config.jam
./b2 cxxflags=-std=c++17 install -j 8 --without-context --without-coroutine --without-fiber --without-thread
cp -r bin.v2 /Users/runner/work/ESL/ESL/
if: matrix.os == 'macos-10.15' && matrix.python_minor_version == 8
if: matrix.os == 'macos-10.15' && matrix.python_minor_version == 7

########################################################################################################################

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ LIST(APPEND ALL_INCLUDE_DIRECTORIES ${Boost_INCLUDE_DIRS})
# Optimized linear algebra and scientific computing routines
MESSAGE("################################################################################")

SET(BLA_STATIC ON)

FIND_PACKAGE(BLAS) # not required, can do with a fallback library
IF(BLAS_FOUND)
FIND_PACKAGE(LAPACK) # also not required but nice to have
Expand Down
2 changes: 1 addition & 1 deletion esl/version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
constexpr unsigned int ESL_VERSION_MAJOR = 0;
constexpr unsigned int ESL_VERSION_MINOR = 0;
constexpr unsigned int ESL_VERSION_REVISION = 49;
constexpr unsigned int ESL_VERSION_REVISION = 50;

0 comments on commit dc67f3f

Please sign in to comment.