liuyh-beep
liuyh-beep
Thanks for your reply. And I modified `toolchains/riscv64-llvm.cmake` to set library path: ``` find_program(CMAKE_C_COMPILER NAMES clang clang) set(CMAKE_C_COMPILER_TARGET riscv64-linux-gnu) find_program(CMAKE_CXX_COMPILER NAMES clang++ clang++) ## set(CMAKE_CXX_COMPILER_TARGET riscv64-linux-gnu) ## set(GCC_LIB_PATH "/llvm_rvv/rvv/riscv/lib/gcc/riscv64-unknown-linux-gnu/14.2.0") set(CMAKE_LIBRARY_PATH...
> Did you build clang yourself? If so, try using lld instead of gnu-ld. Also, build a release version of clang. Thank you for your prompt response, and I would...
Can I ask a silly question? If I get the sleef library which is built with clang-17, would there be some problems or potential issues if I use it with...
Truly grateful! Well, I have built a release version clang and the only modification is to add `SET(CMAKE_C_FLAGS "-fuse-ld=lld")` in `riscv64-llvm.cmake`, and build it: ``` $ cmake -S . -B...
Thanks for your patient response. Yes, I built riscv-toochain from scratch again. Could you please tell me what the reasonable outcomes(e.g. COMPILER_SUPPORTS_FLOAT128 - Failed or success) would be if I...
Currently I want to use some basic mathematical operations(like exp, sin, log) for float32.