Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit cccd9b9

Browse files
committed
Temporary fix for library path to unblock folks
1 parent 32414e3 commit cccd9b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/polyhedral/llvm_jit.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ using namespace llvm;
3636
// find it, but I couldn't immediately find something in
3737
// imported libraries that would resolve this for us.
3838
std::string find_library_path(std::string library) {
39-
std::string command = "ldconfig -p | grep " + library;
39+
std::string command = "ldconfig -p | grep " + library + " | grep x86-64";
4040

4141
FILE* fpipe = popen(command.c_str(), "r");
4242

0 commit comments

Comments
 (0)