Skip to content

Commit

Permalink
meson 12
Browse files Browse the repository at this point in the history
  • Loading branch information
ameli committed Dec 7, 2023
1 parent 280ddb2 commit 3ee1981
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cd /
python -m pip show special_functions
ls C:\hostedtoolcache\windows\Python\3.11.6\x64\Lib\site-packages\special_functions
python -c "import os; os.os.add_dll_directory('C:\hostedtoolcache\windows\Python\3.11.6\x64\Lib\site-packages\special_functions'); import special_functions; print(special_functions.besselk(1,1,1))"
python -c "import os; os.add_dll_directory('C:\hostedtoolcache\windows\Python\3.11.6\x64\Lib\site-packages\special_functions'); import special_functions; print(special_functions.besselk(1,1,1))"
- name: Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ endif
# use a linker script to avoid exporting those symbols (this is in addition to
# Meson using `-fvisibility=hidden` for C and `-fvisibility-inlines-hidden` for
# C++ code. See gh-15996 for details.
_linker_script = meson.project_source_root() / 'scipy/_build_utils/link-version-pyinit.map'
_linker_script = meson.project_source_root() / 'special_functions/_build_utils/link-version-pyinit.map'
version_link_args = ['-Wl,--version-script=' + _linker_script]
# Note that FreeBSD only accepts version scripts when -shared is passed,
# hence we need to pass that to `cc.links` explicitly (flag is already
Expand Down

0 comments on commit 3ee1981

Please sign in to comment.