diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh index 311488b2c2878b..f0577d1069d5de 100755 --- a/.ci/monolithic-linux.sh +++ b/.ci/monolithic-linux.sh @@ -49,7 +49,8 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \ -D LLVM_ENABLE_LLD=ON \ -D CMAKE_CXX_FLAGS=-gmlt \ -D BOLT_CLANG_EXE=/usr/bin/clang \ - -D LLVM_CCACHE_BUILD=ON + -D LLVM_CCACHE_BUILD=ON \ + -D MLIR_ENABLE_BINDINGS_PYTHON=ON echo "--- ninja" # Targets are not escaped as they are passed as separate arguments. diff --git a/.ci/monolithic-windows.sh b/.ci/monolithic-windows.sh index 00c3037c4c4fd6..7ac806a0b399ad 100755 --- a/.ci/monolithic-windows.sh +++ b/.ci/monolithic-windows.sh @@ -48,7 +48,8 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \ -D LLVM_LIT_ARGS="-v --xunit-xml-output ${BUILD_DIR}/test-results.xml" \ -D COMPILER_RT_BUILD_ORC=OFF \ -D CMAKE_C_COMPILER_LAUNCHER=sccache \ - -D CMAKE_CXX_COMPILER_LAUNCHER=sccache + -D CMAKE_CXX_COMPILER_LAUNCHER=sccache \ + -D MLIR_ENABLE_BINDINGS_PYTHON=ON echo "--- ninja" # Targets are not escaped as they are passed as separate arguments.