From ef47109db79860770e8478aeb3a4a9cf22717c1c Mon Sep 17 00:00:00 2001 From: Hashim Sharif <hsharif3@tyler.cs.illinois.edu> Date: Wed, 22 Jan 2020 18:40:31 -0600 Subject: [PATCH] Removing the LLVM IR (human-readable) build from visc-rt CMake script --- hpvm/projects/visc-rt/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hpvm/projects/visc-rt/CMakeLists.txt b/hpvm/projects/visc-rt/CMakeLists.txt index 5b9449bf2d..0395624253 100644 --- a/hpvm/projects/visc-rt/CMakeLists.txt +++ b/hpvm/projects/visc-rt/CMakeLists.txt @@ -7,7 +7,6 @@ add_llvm_library(visc-rt.ll visc-rt.cpp DEPENDS clang - llvm-dis ) @@ -17,6 +16,6 @@ target_compile_options(visc-rt.ll PUBLIC -std=c++11) add_custom_target(visc-rt.cpp.o ALL COMMAND ar -x ${CMAKE_BINARY_DIR}/lib/libvisc-rt.ll.a COMMAND mv ${CMAKE_BINARY_DIR}/tools/hpvm/projects/visc-rt/visc-rt.cpp.o ${CMAKE_BINARY_DIR}/tools/hpvm/projects/visc-rt/visc-rt.bc - COMMAND ${CMAKE_BINARY_DIR}/bin/llvm-dis ${CMAKE_BINARY_DIR}/tools/hpvm/projects/visc-rt/visc-rt.bc) + ) add_dependencies(visc-rt.cpp.o visc-rt.ll) -- GitLab