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