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

Clarify version compat between libcxxwrap-julia and CxxWrap.jl #144

Merged
Merged
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,14 @@ Binaries for the main branch are published at https://github.com/barche/libcxxwr
```
add https://github.com/barche/libcxxwrap_julia_jll.jl.git
```

## Using libcxxwrap-julia as a dependency for downstream packages
When developing Julia bindings for a C++ package using libcxxwrap-julia, you need to
build against the correct version of libcxxwrap-julia. Specifically, to make sure that your
wrapper works correctly with
[CxxWrap.jl](https://github.com/JuliaInterop/CxxWrap.jl), check the compat
settings for `libcxxwrap_jll` in the `Project.toml` file of the
[latest release](https://github.com/JuliaInterop/CxxWrap.jl/releases/latest) of CxxWrap.jl.
It may happen that the latest release of libcxxwrap-julia is not yet supported by
CxxWrap.jl, in which case you should build against an older release (see also
[this comment](https://github.com/JuliaInterop/libcxxwrap-julia/issues/143#issuecomment-1910915193).
Loading