You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When try to build JNI plugin with clang++19, several errors have been occurred.
However, in DEVELOPER_GUIDE we don't have much to say about these failures. It would be good to introduce a new section in there regarding how user can solve the building failures in Mac.
Before applying below listed solutions, you have to make sure
No CMakeFiles, CMakeCache.txt and Makefile under jni, external/faiss and external/nmslib.
Ensure cmake is using clang 19.
⚡ cmake . --fresh
Re-run cmake no build system arguments
-- The C compiler identification is Clang 19.1.3
-- The CXX compiler identification is Clang 19.1.3
-- Detecting C compiler ABI info
...
1. std::promise symbol not found
Undefined symbols for architecture arm64:
"std::exception_ptr::__from_native_exception_pointer(void*)", referenced from:
std::__1::promise<bool>::~promise() in libfaiss.a[79](WorkerThread.cpp.o)
"___cxa_init_primary_exception", referenced from:
std::__1::promise<bool>::~promise() in libfaiss.a[79](WorkerThread.cpp.o)
ld: symbol(s) not found for architecture arm64
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [release/libopensearchknn_faiss.jnilib] Error 1
make[1]: *** [CMakeFiles/opensearchknn_faiss.dir/all] Error 2
make: *** [all] Error 2
Solution:
As the error message suggests, it is failing to get the actual symbol of a std::promise<bool> desctructor during linking time. This can be resolved if we can provide a proper linking path to enable builder to locate the right symbol it wants.
[ 0%] Building CXX object CMakeFiles/opensearchknn_util.dir/src/jni_util.cpp.o
clang++: warning: -lomp: 'linker' input unused [-Wunused-command-line-argument]
clang++: warning: argument unused during compilation: '-L/opt/homebrew/opt/libomp/lib' [-Wunused-command-line-argument]
In file included from /Users/neetiks/workspace/k-NN/jni/src/jni_util.cpp:12:
/Users/neetiks/workspace/k-NN/jni/include/jni_util.h:16:10: fatal error: 'stdexcept' file not found
16 | #include <stdexcept>
| ^~~~~~~~~~~
1 error generated.
Solution:
Remove CMakeFiles, CMakeCache.txt and Makefile under jni, external/faiss and external/nmslib.
export CC=clang
export CXX=clang++
Ensure cmake is using clang 19.
3. Fortran symbols not found
Undefined symbols for architecture arm64:
"__gfortran_concat_string", referenced from:
_sgesvd_ in libopenblas.a[6288](sgesvd.o)
_sgesvd_ in libopenblas.a[6288](sgesvd.o)
_sormbr_ in libopenblas.a[6415](sormbr.o)
_sormbr_ in libopenblas.a[6415](sormbr.o)
_sormbr_ in libopenblas.a[6415](sormbr.o)
_sormbr_ in libopenblas.a[6415](sormbr.o)
_sormlq_ in libopenblas.a[6418](sormlq.o)
_sormlq_ in libopenblas.a[6418](sormlq.o)
_sormlq_ in libopenblas.a[6418](sormlq.o)
...
ld: symbol(s) not found for architecture arm64
I'm still working on it why this is happening, but suspecting the downloaded libopenblas.a from brew is not compatible with ARM 64 architecture.
Once we remove below line from jni/CMakeCache.txt, it would work.
Remove this vvvvvvvvvvvvvvvvvvvvvvv
BLAS_openblas_LIBRARY:FILEPATH=/opt/homebrew/opt/openblas/lib/libopenblas.a
The text was updated successfully, but these errors were encountered:
0ctopus13prime
changed the title
[Enhancement] Update DEVELOPER_GUIDE md file regarding to clang++19 building failure in Mac.
[Enhancement] Update DEVELOPER_GUIDE md file regarding to clang++19 building failure in Mac ARM64 arc.
Nov 14, 2024
Description
When try to build JNI plugin with clang++19, several errors have been occurred.
However, in DEVELOPER_GUIDE we don't have much to say about these failures. It would be good to introduce a new section in there regarding how user can solve the building failures in Mac.
Assumption
User will bump into these issues after they installed
llvm
viabrew
. (llvm@19) https://formulae.brew.sh/formula/llvmFailures
Before applying below listed solutions, you have to make sure
CMakeFiles
,CMakeCache.txt
andMakefile
underjni
,external/faiss
andexternal/nmslib
.clang 19
.1. std::promise symbol not found
Solution:
As the error message suggests, it is failing to get the actual symbol of a
std::promise<bool>
desctructor during linking time. This can be resolved if we can provide a proper linking path to enable builder to locate the right symbol it wants.g++
to rebuild the entire project.Why it's failing?
Looks like there's a linking issue in clang - Homebrew/homebrew-core#169820
2. Standard library include header not found
Solution:
CMakeFiles
,CMakeCache.txt
andMakefile
underjni
,external/faiss
andexternal/nmslib
.export CC=clang
export CXX=clang++
3. Fortran symbols not found
I'm still working on it why this is happening, but suspecting the downloaded libopenblas.a from brew is not compatible with ARM 64 architecture.
Once we remove below line from
jni/CMakeCache.txt
, it would work.The text was updated successfully, but these errors were encountered: