Skip to content
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

### Fixed

## [2.3.2] - 2026-08-04

### Fixed
* Emit one `-rpath` linker argument per path instead of colon-joining them, so the runtime library search path is baked correctly into macOS (Mach-O) extensions [gh-358](https://github.com/IntelPython/mkl_fft/pull/358)

## [2.3.1] - 2026-07-31

### Fixed
Expand Down
7 changes: 5 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ if host_machine.system() != 'windows'
else
origin = '$ORIGIN'
endif
rpath = origin / '../..' + ':' + origin / '../../..'
rpath_link_args = ['-Wl,-rpath,' + rpath]

Comment thread
ndgrigorian marked this conversation as resolved.
rpath_link_args = [
'-Wl,-rpath,' + origin / '../..',
'-Wl,-rpath,' + origin / '../../..',
]
endif

mkl_dep = dependency('MKL', method: 'cmake',
Expand Down
Loading