Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
d0114496
Commit
d0114496
authored
4 years ago
by
Yifan Zhao
Browse files
Options
Downloads
Patches
Plain Diff
Fixed cmake hpvm-rt target naming confusion -- hpvm-rt.bc should generate hpvm-rt.bc!
parent
fe5a467f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpvm/projects/hpvm-rt/CMakeLists.txt
+16
-14
16 additions, 14 deletions
hpvm/projects/hpvm-rt/CMakeLists.txt
with
16 additions
and
14 deletions
hpvm/projects/hpvm-rt/CMakeLists.txt
+
16
−
14
View file @
d0114496
...
...
@@ -6,18 +6,20 @@ SET(CMAKE_CXX_STANDARD 11)
# Defines ${OpenCL_INCLUDE_DIRS} and ${OpenCL_LIBRARY} if found
find_package
(
OpenCL REQUIRED
)
add_llvm_library
(
hpvm-rt.ll hpvm-rt.cpp
DEPENDS
clang
llvm-dis
)
target_compile_options
(
hpvm-rt.ll PUBLIC -flto
)
target_include_directories
(
hpvm-rt.ll PRIVATE
${
OpenCL_INCLUDE_DIRS
}
)
link_directories
(
${
OpenCL_LIBRARY
}
)
add_custom_target
(
hpvm-rt.cpp.o ALL
COMMAND ar -x
${
CMAKE_BINARY_DIR
}
/lib/libhpvm-rt.ll.a
COMMAND mv
${
CMAKE_BINARY_DIR
}
/tools/hpvm/projects/hpvm-rt/hpvm-rt.cpp.o
${
CMAKE_BINARY_DIR
}
/tools/hpvm/projects/hpvm-rt/hpvm-rt.bc
COMMAND
${
CMAKE_BINARY_DIR
}
/bin/llvm-dis
${
CMAKE_BINARY_DIR
}
/tools/hpvm/projects/hpvm-rt/hpvm-rt.bc
)
# This puts libhpvm-rt.a in lib/ which we don't care about
# we want ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/hpvm-rt.dir/hpvm-rt.cpp.o
# which is a LLVM Bitcode file because of the -flto below.
add_llvm_library
(
hpvm-rt hpvm-rt.cpp DEPENDS clang
)
target_compile_options
(
hpvm-rt PUBLIC -flto
)
target_include_directories
(
hpvm-rt PRIVATE
${
OpenCL_INCLUDE_DIRS
}
)
target_link_directories
(
hpvm-rt PUBLIC
${
OpenCL_LIBRARY
}
)
add_dependencies
(
hpvm-rt.cpp.o hpvm-rt.ll
)
# Move and rename hpvm-rt.cpp.o to be an actual bc code
add_custom_command
(
OUTPUT
"
${
CMAKE_CURRENT_BINARY_DIR
}
/hpvm-rt.bc"
ALL
DEPENDS hpvm-rt
COMMAND cp
${
CMAKE_CURRENT_BINARY_DIR
}
/CMakeFiles/hpvm-rt.dir/hpvm-rt.cpp.o
${
CMAKE_CURRENT_BINARY_DIR
}
/hpvm-rt.bc
)
add_custom_target
(
hpvm-rt.bc ALL DEPENDS
"
${
CMAKE_CURRENT_BINARY_DIR
}
/hpvm-rt.bc"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment