[MLIR][Bazel] correctly fix bazel build after 59e74a0 (#160539)

https://github.com/llvm/llvm-project/pull/160508 wasn't the correct fix
- the fix just disabled the test because
59e74a0749/mlir/test/Examples/standalone/lit.local.cfg (L18)
is now always `False` (`if not "0"` is always `False`). This PR is the
correct fix.
This commit is contained in:
Maksim Levental 2025-09-24 12:24:40 -04:00 committed by GitHub
parent 4d4cb757f9
commit ef5e5ef6dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -60,7 +60,7 @@ config.mlir_run_cuda_sm80_tests = @MLIR_RUN_CUDA_SM80_TESTS@
config.mlir_run_cuda_sm80_lt_tests = @MLIR_RUN_CUDA_SM80_LT_TESTS@
config.mlir_run_cuda_sm90_tests = @MLIR_RUN_CUDA_SM90_TESTS@
config.mlir_include_integration_tests = @MLIR_INCLUDE_INTEGRATION_TESTS@
config.llvm_shared_libs_build = "@BUILD_SHARED_LIBS@"
config.llvm_shared_libs_build = @BUILD_SHARED_LIBS@
config.arm_emulator_executable = "@ARM_EMULATOR_EXECUTABLE@"
# Some tests marked with 'UNSUPPORTED: target=aarch64{{.*}}' are still run when
# configured with ARM_EMULATOR_EXECUTABLE and the default target is not aarch64.

View File

@ -7713,8 +7713,8 @@ cc_library(
"lib/Transforms/*.cpp",
]),
hdrs = [
"include/mlir/Transforms/CSE.h",
"include/mlir/Transforms/BubbleDownMemorySpaceCasts.h",
"include/mlir/Transforms/CSE.h",
"include/mlir/Transforms/EndomorphismSimplification.h",
"include/mlir/Transforms/HomomorphismSimplification.h",
"include/mlir/Transforms/LocationSnapshot.h",
@ -12704,8 +12704,8 @@ cc_library(
deps = [
":DialectUtils",
":IR",
":Support",
":MemOpInterfacesIncGen",
":Support",
],
)

View File

@ -31,6 +31,7 @@ expand_template(
"@LIT_SITE_CFG_IN_HEADER@": LIT_SITE_CFG_IN_HEADER,
"@LLVM_TOOLS_DIR@": package_path("//llvm:BUILD"),
"@ENABLE_SHARED@": "1",
"@BUILD_SHARED_LIBS@": "1",
"@ENABLE_ASSERTIONS@": "1",
"@MLIR_SOURCE_DIR@": package_path("//mlir:BUILD"),
"@MLIR_TOOLS_DIR@": package_path("//mlir:BUILD"),