Skip to content

Clarify Cxx.jl. Update calling-c-and-fortran-code.md #49379

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

Merged
merged 3 commits into from
Apr 17, 2023
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
4 changes: 1 addition & 3 deletions doc/src/manual/calling-c-and-fortran-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -1118,9 +1118,7 @@ For more details on how to pass callbacks to C libraries, see this [blog post](h

## C++

For direct C++ interfacing, see the [Cxx](https://github.com/Keno/Cxx.jl) package. For tools to create C++
bindings, see the [CxxWrap](https://github.com/JuliaInterop/CxxWrap.jl) package.

For tools to create C++ bindings, see the [CxxWrap](https://github.com/JuliaInterop/CxxWrap.jl) package.


[^1]: Non-library function calls in both C and Julia can be inlined and thus may have
Expand Down
3 changes: 2 additions & 1 deletion doc/src/manual/embedding.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ calling Julia functions from C code. This can be used to integrate Julia code in
C/C++ project, without the need to rewrite everything in C/C++. Julia has a C API to make
this possible. As almost all programming languages have some way to call C functions, the
Julia C API can also be used to build further language bridges (e.g. calling Julia from
Python or C#).
Python, Rust or C#). Even though Rust and C++ can use the C embedding API directly, both
have packages helping with it, for C++ [Jluna](https://github.com/Clemapfel/jluna) is useful.

## High-Level Embedding

Expand Down