diff options
author | Francisco Jerez <[email protected]> | 2016-05-17 16:03:04 +0200 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2016-07-11 20:34:34 -0700 |
commit | 132b6ccd4f81eac3cad5bef42325319708498240 (patch) | |
tree | 4c44d5c7b98ecd648147a8f0c2153ae64edb0963 /src/gallium/state_trackers/clover/Makefile.sources | |
parent | 1a7d11aa3dc65e89f0d801707951afc32cbaa6ee (diff) |
clover/llvm: Split compilation and linking.
Split the work previously done by compile_program_llvm() into
compile_program() (which simply runs the front-end and serializes the
resulting LLVM IR) and link_program() (which takes care of everything
else down to binary codegen).
[ Serge Martin: allow LLVM IR dump after compilation ]
Reviewed-by: Serge Martin <[email protected]>
Tested-by: Jan Vesely <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/clover/Makefile.sources')
-rw-r--r-- | src/gallium/state_trackers/clover/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/clover/Makefile.sources b/src/gallium/state_trackers/clover/Makefile.sources index 0d1fb8cb018..bbfb2de6245 100644 --- a/src/gallium/state_trackers/clover/Makefile.sources +++ b/src/gallium/state_trackers/clover/Makefile.sources @@ -60,6 +60,7 @@ LLVM_SOURCES := \ llvm/codegen.hpp \ llvm/compat.hpp \ llvm/invocation.cpp \ + llvm/invocation.hpp \ llvm/metadata.hpp \ llvm/util.hpp |