Jan Strube
Jan Strube
ps: sorry, the package isn't quite self-contained, yet. To test, please `] add LCIO` and change the path to the C++ libs near the top of LCIO_Cxx.jl.
Same here. Has anybody found a fix? Couldn't get it to build in 0.7-alpha, either. I could wait for that if it's easier to support and if there's an ETA.
Actually, I was able to recover: Compiling with gcc-7.3.1 instead of the system-supplied 4.8.5 seems to work.
Either by setting the envvars before starting julia: `CC=gcc-7 CXX=g++-7 julia` or by setting them from within julia, before building Cxx ``` julia ENV["CC"]="gcc-7" ENV["CXX"]="g++-7" Pkg.build("Cxx") Using Cxx ``` In...
Thanks for the suggestion. Now that I see it, I think this syntax had been suggested to me in a different context. Unfortunately, this gives me a segfault, similar to...
This is Ubuntu 16.04. OK, will try on another installation, have gcc5 and 6 on a CentOS7 installation at work. I might also try with 3.9-pre later.
Segfault also on the other machine ``` Program received signal SIGSEGV, Segmentation fault. 0x00007ffff4ca3fc0 in std::string::assign(std::string const&) () from /lib64/libstdc++.so.6 Missing separate debuginfos, use: debuginfo-install glibc-2.17-105.el7.x86_64 keyutils-libs-1.5.8-3.el7.x86_64 krb5-libs-1.13.2-10.el7.x86_64 libcom_err-1.42.13.wc4-7.el7.x86_64 libgcc-4.8.5-4.el7.x86_64...
Tried again on a new SuSE Tumbleweed install. Segfault here as well. The trace does end at the stdlib, butif that's really the culprit, it's a widespread problem, not just...
This is still an issue with the latest version of Cxx. Trying to use this line to instantiate the class ``` CellIDDecoder(t::LCCollection{T}) where {T} = icxx"UTIL::CellIDDecoder{$(t.coll)};" ``` Leads to this...
I have encountered exactly the same problem. It looks like the sourceforge report is from 2014. Could somebody please comment where this item is on the priority list of the...