-
Notifications
You must be signed in to change notification settings - Fork 68
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
StdFill
not defined in CxxWrap.StdLib
#455
Comments
This looks like a possible version mismatch, can you check with |
Thanks for the reply. I do not see it. Everything looks fine for me (I reverted to julia 1.10 just to check): julia> using CxxWrap
julia> CxxWrap.libcxxwrapversion()
v"0.13.2"
julia> using Libdl
julia> for l in Libdl.dllist();occursin("cxxwrap",lowercase(l)) && println(l);end
/Users/mato/.julia/compiled/v1.10/libcxxwrap_julia_jll/9VnAb_b2u6u.dylib
/Users/mato/.julia/artifacts/a733004dc3a6d098fcb468930d1084d8fea63e5e/lib/libcxxwrap_julia.0.13.2.dylib
/Users/mato/.julia/artifacts/a733004dc3a6d098fcb468930d1084d8fea63e5e/lib/libcxxwrap_julia_stl.dylib
/Users/mato/.julia/compiled/v1.10/CxxWrap/WGIJU_b2u6u.dylib The only possibility I see is that |
The problem is that for MacOS the compiler used is clang++ and does not support
Perhaps @giordano has an idea on how this can be overcome. |
|
Ah yes, good catch, it is because of the |
Any estimate when the easiest solution would be implemented? |
@barche I was trying to see whether I could provide a quick fix to avoid this problem, since I am stuck on it and cannot make problem on my side. In a very naive reasoning: If ranges are not supported we could do the loop explicitly. But this is not working. Indeed there are few things I do not understand:
|
Does simply commenting out the call to |
Commenting the call in But I know now what the problem is. When the
|
I am trying to re-generate the wrappers for XRootD.jl with version v0.16.0 of CxxWrap and version v0.13.2 of libcxxwrap_julia_jll. I can build successfully the wrapper library, but when initialising I get the error:
Any idea of what could be the problem? Thanks.
The text was updated successfully, but these errors were encountered: