Jacek Danecki

Results 15 comments of Jacek Danecki

It's weird, maybe dlopen works differently on mucl. ocloc uses dlopen with RTLD_LAZY | RTLD_DEEPBIND to load fcl and igc, then igc loads builtins symbols using dlsym with RTLD_DEFAULT

Yeah, I've prepared simple reproducer on alpine, and it looks like RTLD_GLOBAL flag is required to load symbol by dlsym in the library loaded by dlopen. ``` ~ # cat...

Can you provide information about opencl-clang and spirv-llvm-translator revisions you are using? How did you build them, as a separate components, or as projects in llvm tree? Have you built...

As I can see in https://github.com/aports-ugly/aports/blob/7b538c402c4f021ce9478a4dfef1aab2d5362600/ugly/compute-runtime/musl-compat.patch you defined ``` #define RTLD_DEEPBIND 0 ``` but it's defined as ``` #define RTLD_DEEPBIND 0x00008 /* Use deep binding. */ ``` in glibc-headers. Is...

You can set SANITIZER_BUILD using CXXFLAGS globally. I'll prepare setup with alpine to reproduce issue using your build scripts.