Skip to content

Commit

Permalink
Clarify Cxx.jl. Update calling-c-and-fortran-code.md (#49379)
Browse files Browse the repository at this point in the history
* Update calling-c-and-fortran-code.md Drop mentioning Cxx.jl

(cherry picked from commit e998367)
  • Loading branch information
PallHaraldsson authored and KristofferC committed May 15, 2023
1 parent 6c2d506 commit 9951bba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
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

0 comments on commit 9951bba

Please sign in to comment.