Skip to content

Commit

Permalink
Merge branch 'rete-master-bench'
Browse files Browse the repository at this point in the history
  • Loading branch information
bollu committed Dec 15, 2021
2 parents fb3cc54 + ebcc93b commit ad5612d
Show file tree
Hide file tree
Showing 9 changed files with 100,947 additions and 101 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build/
compile_commands.json
*.sublime-*
.cache/
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ project(lz-dialect LANGUAGES CXX C)
set(CMAKE_CXX_STANDARD 14 CACHE STRING "C++ standard to conform to")
# we have -Wnoerror=attributes because we use things like always_inline,
# and clang says:
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-attributes -fsanitize=address -fsanitize=undefined")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-attributes")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fsanitize=address -fsanitize=undefined")
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-attributes -fsanitize=address -fsanitize=undefined")


find_package(MLIR REQUIRED CONFIG)
Expand Down
5 changes: 4 additions & 1 deletion src/hoopl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ target_link_libraries(hoopl PRIVATE
MLIRTargetLLVMIRExport
# MLIRTargetLLVMIR
MLIRTransforms
MLIRSupport)
MLIRSupport
cgraph gvc)



mlir_check_link_libraries(hoopl)

0 comments on commit ad5612d

Please sign in to comment.