commit
3b7a1c17b0
10
MLIR.cmake
10
MLIR.cmake
|
@ -153,10 +153,10 @@ set(MLIRWholeArchiveLibs
|
||||||
function(whole_archive_link target lib_dir)
|
function(whole_archive_link target lib_dir)
|
||||||
get_property(link_flags TARGET ${target} PROPERTY LINK_FLAGS)
|
get_property(link_flags TARGET ${target} PROPERTY LINK_FLAGS)
|
||||||
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
|
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
|
||||||
set(link_flags "${link_flags} -L${lib_dir} ")
|
set(link_flags "${link_flags} -L${lib_dir} ")
|
||||||
foreach(LIB ${ARGN})
|
foreach(LIB ${ARGN})
|
||||||
string(CONCAT link_flags ${link_flags}
|
string(CONCAT link_flags ${link_flags}
|
||||||
"-Wl,-force_load ${lib_dir}/lib${LIB}.a ")
|
"-Wl,-force_load, ${lib_dir}/lib${LIB}.a ")
|
||||||
endforeach(LIB)
|
endforeach(LIB)
|
||||||
elseif(MSVC)
|
elseif(MSVC)
|
||||||
foreach(LIB ${ARGN})
|
foreach(LIB ${ARGN})
|
||||||
|
@ -177,9 +177,9 @@ function(whole_archive_link_mlir target)
|
||||||
endfunction(whole_archive_link_mlir)
|
endfunction(whole_archive_link_mlir)
|
||||||
|
|
||||||
function(whole_archive_link_onnf target)
|
function(whole_archive_link_onnf target)
|
||||||
foreach(LIB ${ARGN})
|
foreach(lib_target ${ARGN})
|
||||||
add_dependencies(${target} ${LIB})
|
add_dependencies(${target} ${lib_target})
|
||||||
endforeach(LIB)
|
endforeach(lib_target)
|
||||||
whole_archive_link(${target} ${CMAKE_BINARY_DIR}/lib ${ARGN})
|
whole_archive_link(${target} ${CMAKE_BINARY_DIR}/lib ${ARGN})
|
||||||
endfunction(whole_archive_link_onnf)
|
endfunction(whole_archive_link_onnf)
|
||||||
|
|
||||||
|
|
|
@ -70,9 +70,9 @@ add_subdirectory(runtime)
|
||||||
|
|
||||||
add_executable(onnf main.cpp)
|
add_executable(onnf main.cpp)
|
||||||
|
|
||||||
target_link_libraries(onnf builder compiler ${MLIRLibs} onnf_transform)
|
target_link_libraries(onnf builder ${MLIRLibs} onnf_transform)
|
||||||
whole_archive_link_mlir(onnf ${MLIRWholeArchiveLibs})
|
|
||||||
set_target_properties(onnf PROPERTIES LINK_FLAGS "-lz")
|
set_target_properties(onnf PROPERTIES LINK_FLAGS "-lz")
|
||||||
|
whole_archive_link_mlir(onnf ${MLIRWholeArchiveLibs})
|
||||||
|
|
||||||
target_include_directories(onnf PRIVATE ${CMAKE_SOURCE_DIR})
|
target_include_directories(onnf PRIVATE ${CMAKE_SOURCE_DIR})
|
||||||
target_include_directories(onnf PRIVATE ${CMAKE_BINARY_DIR})
|
target_include_directories(onnf PRIVATE ${CMAKE_BINARY_DIR})
|
||||||
|
|
Loading…
Reference in New Issue