CxxWrap.jl
Package to make C++ libraries available in Julia (by JuliaInterop)
sol2
Sol3 (sol2 v3.0) - a C++ <-> Lua API wrapper with advanced features and top notch performance - is here, and it's great! Documentation: (by ThePhD)
CxxWrap.jl | sol2 | |
---|---|---|
4 | 22 | |
440 | 4,422 | |
1.6% | 1.7% | |
7.5 | 4.2 | |
23 days ago | 19 days ago | |
Julia | C++ | |
GNU General Public License v3.0 or later | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
CxxWrap.jl
Posts with mentions or reviews of CxxWrap.jl.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-03-12.
-
jluna: a new Julia <-> C++ Wrapper
Kudos for your work. AFAIK, the recommended C++ interop for Julia is CxxWrap https://github.com/JuliaInterop/CxxWrap.jl. Could you provide the main advantages of using jluna vs. CxxWrap?
-
A new C++ <-> Julia Wrapper: jluna
If you are interested in C++ interop you can also have a look at Clang.jl and CxxWrap.jl (the usual Julia package chaos applies, where the package mentioned in old talks and docs that you find on google is superseded by some others...)
-
Can I expose C/C++ Functions to Julia?
You could try https://github.com/JuliaInterop/CxxWrap.jl
-
Anyone using Julia for physics?
I like about Julia that it is so easy to call packages from other languages. CxxWrap.jl for easy access of C++ libraries. I often use python libraries inside my Julia code.
sol2
Posts with mentions or reviews of sol2.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-01-17.
-
Lua Programming in Lua (first edition)
PSA: if you are using (modern) C++, https://github.com/ThePhD/sol2 makes embedding Lua incredibly easy and straightforward.
-
Lua Is So Underrated
The Lua C API is fantastic from a design perspective, but as you have discovered, it is rather error prone. Fortunately, there are many wrapper libraries that take care of all the stack manipulation. For example, I'm using https://github.com/ThePhD/sol2 to interface with C++ and the API is incredibly ergonomic.
-
Any tips for how to make moddable games?
As someone said, make the game data-driven is a good first step but I will say, also have some sort of way to add additional game logic. For C++ games, lua is really easy to embed the interpreter in your C++ binary, read in the files from a directory (like /mods) with the C++ filesystem api new in C++17, and it's very easy to use SoL to write an API for lua specific to your game. Many games use lua in this way and it's probably the most common mod path setup.
-
Script Interoperability
I've only ever done this from C++, but it's using the same lua C library, so should be durable from C as well. You can look up how sol2 or any other wrapper libraries do it.
-
Need help trying to embed lua in c++
Consider sol2
-
CBN Changelog: December 3, 2022. Improved LUA support in progress!
This version relies on a Lua C++ wrapper called sol2 to hide Lua stack management from the developer, so creating new bindings can be done by adding a few lines of human-readable C++. It still has to be done manually, but at least sol2 is able to automatically figure out types of objects being bound, so it's not much different from our de-/serialization code.
- RTS programming game where you write real C++ code to control your player.
-
why?
Here's an example: sol2
-
Tools for rolling your own engine
Here is link number 2 - Previous text "Sol"
-
Storing pointers to C++ data in Lua in a type-safe-ish manner that are comparable on the Lua side.
Have you considered using sol2? https://github.com/ThePhD/sol2 Or if you don't want to switch over, you can at least look at their code and see how they handle this.
What are some alternatives?
When comparing CxxWrap.jl and sol2 you can also consider the following projects:
Clang.jl - C binding generator and Julia interface to libclang
ChaiScript - Embedded Scripting Language Designed for C++
LatticeQCD.jl - A native Julia code for lattice QCD with dynamical fermions in 4 dimension.
Lua - Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.
jluna - Julia Wrapper for C++ with Focus on Safety, Elegance, and Ease of Use
luacxx - C++11 API for creating Lua bindings