Skip to content

Commit

Permalink
Fix ttmlir-(opt/translate) linking to llvm dylib (again) (#1621)
Browse files Browse the repository at this point in the history
I seem to have accidentally changed `DMLIR_LINK_MLIR_DYLIB` instead of
`DLLVM_LINK_LLVM_DYLIB` last time 🤦
And must not have properly cleared all build files when I tested, s.t.
it picked up manual fix previously with correct variable change.
Correcting here--planning to leave change to `DMLIR_LINK_MLIR_DYLIB=OFF`
too, for symmetry
  • Loading branch information
vwellsTT authored Dec 18, 2024
1 parent 640377d commit cf80a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ExternalProject_Add(
-DLLVM_ENABLE_PIC=ON
-DLLVM_BUILD_LLVM_DYLIB=ON
-DLLVM_INSTALL_GTEST=ON
-DLLVM_LINK_LLVM_DYLIB=ON
-DLLVM_LINK_LLVM_DYLIB=OFF
-DMLIR_BUILD_MLIR_C_DYLIB=ON
-DMLIR_LINK_MLIR_DYLIB=OFF
-DMLIR_BUILD_MLIR_C_DYLIB=ON
Expand Down

0 comments on commit cf80a1a

Please sign in to comment.