Open samfux84 opened 2 years ago
Is this a known problem?
Could it be that the recent change in the OpenBLAS version is breaking the build?
@samfux84
new ViewControl
It can be fixed by specifying -DCMAKE_CXX_STANDARD=17 (with removing https://github.com/isl-org/Open3D/blob/v0.15.1/CMakeLists.txt#L252 override)
cc @RunqiuBao @liuhuanjim013
for my own note: I once thought I needed new(std::align_val_t{32}) ViewControl
but turned out not to be required, so I feel relieved.
Checklist
master
branch).Steps to reproduce the issue
I first cloned Open3D by:
wget https://github.com/isl-org/Open3D/archive/refs/tags/v0.15.1.tar.gz
Then, I build Open3D (on CentOS, with CUDA 11.3.1) with:
Error message
The first error that appears (not related to the BLAS/LAPACK problem and not terminating the build process) is:
The problem related to the bundled BLAS/LAPACK is:
Is this a known problem? I would expect that Open3D should build with the bundled netlib-BLAS/LAPACK.
Additional information
Actually I first wanted to build Open3D (headless) using an existing OpenBLAS installation (built from source), but then I got the error reported above. Searching for the error message lead me to
https://github.com/isl-org/Open3D/issues/2468
I tried the fixes of the header files proposed in this github issue, but it did not fix the problem. Then I removed the changes and switched to using the bundled netlib-BLAS/LAPACK, because I thought that this would fix the issue, which was not the case.