diff --git a/mlir/cmake/modules/AddMLIR.cmake b/mlir/cmake/modules/AddMLIR.cmake --- a/mlir/cmake/modules/AddMLIR.cmake +++ b/mlir/cmake/modules/AddMLIR.cmake @@ -159,7 +159,7 @@ " filepath: \"${LLVM_TARGET_DEFINITIONS_ABSOLUTE}\"\n" " includes: \"${CMAKE_CURRENT_SOURCE_DIR};${tblgen_includes}\"\n" ) - + add_public_tablegen_target(${target}) endfunction() @@ -490,6 +490,17 @@ ${ARG_PUBLIC_LIBS} ) target_sources(${name} PRIVATE ${_objects}) + + # Linux defaults to allowing undefined symbols in shared libraries whereas + # many other platforms are more strict. We want these libraries to be + # self contained, and we want any undefined symbols to be reported at + # library construction time, not at library use, so make Linux strict too. + if(CMAKE_SYSTEM_NAME STREQUAL "Linux") + target_link_options(${name} PRIVATE + "LINKER:-z,defs" + ) + endif() + # TODO: Should be transitive. set_target_properties(${name} PROPERTIES MLIR_AGGREGATE_EXCLUDE_LIBS "${_embed_libs}")