-
Notifications
You must be signed in to change notification settings - Fork 66
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
julia using cxxwrap, realese is working but it is not possible to Debug #435
Comments
Based on the screenshot I have no idea, can you give some more details on what you are trying to do and how to reproduce this? |
I am working in a long code, before to update it was possible to debug, because i could not debug, i build a helloworld sample, and i am getting the same problem. cmake_minimum_required(VERSION 3.5) find_package(JlCxx) message(STATUS "Found JlCxx at ${JlCxx_location}") add_library(hello SHARED hello.cpp) target_link_libraries(hello JlCxx::cxxwrap_julia) install(TARGETS hello.cpp: std::string greet() double add(double a, double b) { JLCXX_MODULE define_julia_module(jlcxx::Module& mod) mytest.jl: module CppHello function init() CppHello.greet() result = CppHello.add(3.0,5.0) println("Resultado de la suma: $result") cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/home/pablo/.julia/dev/libcxxwrap_julia_jll/override /home/pablo/test_debug_cxxwrap tried config Debug and the same happened |
I can reproduce this, but I don't know if it's a bug in JuliaInterpreter.jl or in CxxWrap. |
thanks |
Hello,
julia using cxxwrap, realese is working but it is not possible to Debug, giving this error, attached pic
The text was updated successfully, but these errors were encountered: