We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21bec88 commit 0407f22Copy full SHA for 0407f22
python/config.py.in
@@ -2,13 +2,12 @@ import os
2
import sys
3
4
shlib_ext = "@LTDL_SHLIB_EXT@"
5
-llvm_obj_root = "@LLVM_BINARY_DIR@"
6
7
if sys.platform.startswith("win32"):
8
- mlir_runner_utils_dir = os.path.normpath(os.path.join(llvm_obj_root, "bin"))
+ mlir_runner_utils_dir = os.path.normpath(os.path.join("@LLVM_BINARY_DIR@", "bin"))
9
shlib_prefix = ""
10
else:
11
- mlir_runner_utils_dir = os.path.normpath(os.path.join(llvm_obj_root, "lib"))
+ mlir_runner_utils_dir = "@LLVM_LIBRARY_DIR@"
12
shlib_prefix = "lib"
13
14
MLIR_C_RUNNER_UTILS = os.path.normpath(
0 commit comments