Skip to content

Commit

Permalink
rever to dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMVale committed Jan 24, 2025
1 parent a2c0a0a commit 822326e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ if host_machine.system() == 'darwin'
add_project_link_arguments('-framework', 'Accelerate', language: ['c', 'fortran'])
blas_dep = declare_dependency()
else
blas_dep = dependency('openblas', required: false, static: true)
blas_dep = dependency('openblas', required: false)
if not blas_dep.found()
blas_dep = c_compiler.find_library('openblas', required: false, static: true)
blas_dep = c_compiler.find_library('openblas', required: false)
endif
endif

Expand Down

0 comments on commit 822326e

Please sign in to comment.