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
The binaries that are build require rpath to be set:
❯ otool -L /private/var/tmp/_bazel_varun/556335f3782e99575c0c742955be4ea7/execroot/scip_clang/bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/external/llvm-project/clang/clang-tblgen
/private/var/tmp/_bazel_varun/556335f3782e99575c0c742955be4ea7/execroot/scip_clang/bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/external/llvm-project/clang/clang-tblgen:
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1336.61.1)
/usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 1600.157.0)
/usr/lib/libc++abi.dylib (compatibility version 1.0.0, current version 1600.157.0)
@rpath/libunwind.1.dylib (compatibility version 1.0.0, current version 1.0.0)
But there is no LC_RPATH command in the output of otool -l
Consequently, there is a failure when attempting to run the binaries (here is an example)
ERROR: /private/var/tmp/_bazel_varun/556335f3782e99575c0c742955be4ea7/external/llvm-project/llvm/BUILD.bazel:724:11: Generating code from table: include/llvm/IR/Intrinsics.td @llvm-project//llvm:intrinsic_RISCV_gen__gen_intrinsic_enums__intrinsic_prefix_riscv_genrule failed: (Aborted): bash failed: error executing command (from target @llvm-project//llvm:intrinsic_RISCV_gen__gen_intrinsic_enums__intrinsic_prefix_riscv_genrule) /bin/bash -c ... (remaining 1 argument skipped)
dyld[14979]: Library not loaded: @rpath/libunwind.1.dylib
Referenced from: <0A452CEC-C892-3712-8A76-60D49AC12E0B> /private/var/tmp/_bazel_varun/556335f3782e99575c0c742955be4ea7/execroot/scip_clang/bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/external/llvm-project/llvm/llvm-tblgen
Reason: no LC_RPATH's found
I cannot quite tell what changed from before -- is libunwind missing from some system directory, is it not getting built for some reason, was LC_RPATH set before but it isn't being set now...
The text was updated successfully, but these errors were encountered:
scip-clang commit: 3035e46
The binaries that are build require rpath to be set:
But there is no LC_RPATH command in the output of
otool -l
Consequently, there is a failure when attempting to run the binaries (here is an example)
I cannot quite tell what changed from before -- is
libunwind
missing from some system directory, is it not getting built for some reason, wasLC_RPATH
set before but it isn't being set now...The text was updated successfully, but these errors were encountered: