Markus Mützel
Markus Mützel
Sorry for not having reacted earlier. Could you please show what `mkoctfile -p LDFLAGS` and `mkoctfile -p DL_LDFLAGS` show for you? I'm suspicious that both could contain the `-bundle_loader` flag...
Thanks. I think we are getting close to the root cause here. The default value for `LDFLAGS` (i.e., in case the user didn't set a different value in the environment)...
Maybe, .oct or .mex files are more like a bundle. https://docstore.mik.ua/orelly/unix3/mac/ch05_03.htm Does it also work if you execute `setenv('DL_LDFLAGS', '-bundle')` before installing the statistics package? That one would probably be...
I've noticed that `libtool` is building the .mex files for Octave's test suite effectively with flags that are similar to `setenv('DL_LDFLAGS', '-bundle')`. I'd be interested to see if this also...
I'm looking into it. Should probably be not too difficult.
> One option, which I'll have to bounce off of my NVIDIA collaborators, is to merge rmm_wrap into the GraphBLAS_CUDA package. That way I reduce the # of packages by...
That is probably due to the same issue that is mentioned here: https://discourse.cmake.org/t/openmp-linking-errors-on-windows-using-ninja-and-clang/7246 If there is no open bug report about that for CMake yet, it might make sense to...
A work-around for this issue until it is fixed in upstream CMake is to use `clang-cl` instead of `clang` and `clang++` when targeting MSVC.
Using `clang-cl` works around this issue. The issue is still there with `clang` when building a msvc target. That issue probably needs to be fixed in upstream CMake. It might...