fix build
This commit is contained in:
parent
238c937f1b
commit
50ea6bed03
20
MLIR.cmake
20
MLIR.cmake
|
@ -140,15 +140,15 @@ set(MLIRLibs
|
||||||
Threads::Threads)
|
Threads::Threads)
|
||||||
|
|
||||||
set(MLIRWholeArchiveLibs
|
set(MLIRWholeArchiveLibs
|
||||||
MLIRAffineToStandard
|
${MLIRAffineToStandard}
|
||||||
MLIRAffineOps
|
${MLIRAffineOps}
|
||||||
MLIRLLVMIR
|
${MLIRLLVMIR}
|
||||||
MLIRStandardOps
|
${MLIRStandardOps}
|
||||||
MLIRStandardToLLVM
|
${MLIRStandardToLLVM}
|
||||||
MLIRTransforms
|
${MLIRTransforms}
|
||||||
MLIRLoopToStandard
|
${MLIRLoopToStandard}
|
||||||
MLIRVectorOps
|
${MLIRVectorOps}
|
||||||
MLIRLoopOps)
|
${MLIRLoopOps})
|
||||||
|
|
||||||
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)
|
||||||
|
@ -156,7 +156,7 @@ function(whole_archive_link target lib_dir)
|
||||||
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} ")
|
||||||
endforeach(LIB)
|
endforeach(LIB)
|
||||||
elseif(MSVC)
|
elseif(MSVC)
|
||||||
foreach(LIB ${ARGN})
|
foreach(LIB ${ARGN})
|
||||||
|
|
|
@ -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