Skip to content

Commit e998367

Browse files
Clarify Cxx.jl. Update calling-c-and-fortran-code.md (#49379)
* Update calling-c-and-fortran-code.md Drop mentioning Cxx.jl
1 parent c9407bd commit e998367

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

doc/src/manual/calling-c-and-fortran-code.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1118,9 +1118,7 @@ For more details on how to pass callbacks to C libraries, see this [blog post](h
11181118

11191119
## C++
11201120

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

11251123

11261124
[^1]: Non-library function calls in both C and Julia can be inlined and thus may have

doc/src/manual/embedding.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ calling Julia functions from C code. This can be used to integrate Julia code in
66
C/C++ project, without the need to rewrite everything in C/C++. Julia has a C API to make
77
this possible. As almost all programming languages have some way to call C functions, the
88
Julia C API can also be used to build further language bridges (e.g. calling Julia from
9-
Python or C#).
9+
Python, Rust or C#). Even though Rust and C++ can use the C embedding API directly, both
10+
have packages helping with it, for C++ [Jluna](https://github.com/Clemapfel/jluna) is useful.
1011

1112
## High-Level Embedding
1213

0 commit comments

Comments
 (0)