libcxxwrap-julia icon indicating copy to clipboard operation
libcxxwrap-julia copied to clipboard

C++ library for backing CxxWrap.jl

Results 27 libcxxwrap-julia issues
Sort by recently updated
recently updated
newest added

The content of the suggested Overrides.toml is not correct. I was getting an init-error, see [discourse.julialang](https://discourse.julialang.org/t/initerror-could-not-load-library-libcxxwrap-julia-stl-dll-on-windows/74535). The solution of the issue is also there. It would be good to update...

Hi, according to [Publish Interface to Shared C++ Library on Windows](https://de.mathworks.com/help/matlab/matlab_external/publish-interface-to-shared-c-library.html) I set up a build script: ` function create_definition productPath = 'C:\Users\xxx\Downloads\libcxxwrap-julia-master\include\jlcxx'; libPath = 'C:\Users\xxx\AppData\Local\Programs\Julia-1.6.2\bin'; % Header file name...

When trying to reproduce the BinaryBuilder example in `testlib-builder` with Julia 1.6.1 and BinaryBuilder 0.4.0, the execution fails since `CompilerABI()` is not defined -- it seems to have been removed...

Hi, I'm almost certain I'm missing something while building libcxxwrap-julia & installing cxxwrap, I'm quite new to julia generally. After `cmake --build . --config Release` I then create the Override...

How exactly am I supposed to build a project using this library, only installing `CxxWrap` from Pkg? So far I have been installing CxxWrap, then libcxxwrap from the repo, and...

(This comes from comments on https://github.com/JuliaPackaging/Yggdrasil/issues/2160 but I think it deserves its own full issue): There are at least two issues with `libcxxwrap_julia_jll` v0.8.5 in Julia 1.5 and later 1....

I was tracking the cause behind a memory leak related to a CxxWrap based project. https://stackoverflow.com/questions/64978891/how-do-i-fix-a-julia-opencv-cxx-memory-leak-in-image-capturing It seems that Julia's garbage collector does not realize the actual size of objects...

bug

Hi, I am attempting to use `CxxWrap` to expose a C++ library to Julia, and I would like to pass a Julia function as a callback to the library. However,...

Specifically, [as described in cppreference](https://en.cppreference.com/w/cpp/named_req/Container). A minor change such as `typedef`ing the container's `value_type` already allows the usage of `std::back_inserter`. As an example of such usage, here's a use case...

Is it possible, planned to define methods with keyword arguments? If not yet, I would like to contribute in order add support.