mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-19 00:14:20 +00:00
llvm-dwp: Initial layout
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254354 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dd121fc847
commit
629180472c
@ -28,6 +28,7 @@ subdirectories =
|
||||
llvm-diff
|
||||
llvm-dis
|
||||
llvm-dwarfdump
|
||||
llvm-dwp
|
||||
llvm-extract
|
||||
llvm-jitlistener
|
||||
llvm-link
|
||||
|
@ -33,7 +33,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis llc llvm-ar llvm-nm llvm-link \
|
||||
llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \
|
||||
llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \
|
||||
llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump \
|
||||
llvm-split sancov
|
||||
llvm-split sancov llvm-dwp
|
||||
|
||||
# If Intel JIT Events support is configured, build an extra tool to test it.
|
||||
ifeq ($(USE_INTEL_JITEVENTS), 1)
|
||||
|
13
tools/llvm-dwp/CMakeLists.txt
Normal file
13
tools/llvm-dwp/CMakeLists.txt
Normal file
@ -0,0 +1,13 @@
|
||||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
AsmPrinter
|
||||
DebugInfoDWARF
|
||||
MC
|
||||
Object
|
||||
Support
|
||||
Target
|
||||
)
|
||||
|
||||
add_llvm_tool(llvm-dwp
|
||||
llvm-dwp.cpp
|
||||
)
|
23
tools/llvm-dwp/LLVMBuild.txt
Normal file
23
tools/llvm-dwp/LLVMBuild.txt
Normal file
@ -0,0 +1,23 @@
|
||||
;===- ./tools/llvm-dwp/LLVMBuild.txt ---------------------------*- Conf -*--===;
|
||||
;
|
||||
; The LLVM Compiler Infrastructure
|
||||
;
|
||||
; This file is distributed under the University of Illinois Open Source
|
||||
; License. See LICENSE.TXT for details.
|
||||
;
|
||||
;===------------------------------------------------------------------------===;
|
||||
;
|
||||
; This is an LLVMBuild description file for the components in this subdirectory.
|
||||
;
|
||||
; For more information on the LLVMBuild system, please see:
|
||||
;
|
||||
; http://llvm.org/docs/LLVMBuild.html
|
||||
;
|
||||
;===------------------------------------------------------------------------===;
|
||||
|
||||
[component_0]
|
||||
type = Tool
|
||||
name = llvm-dwp
|
||||
parent = Tools
|
||||
required_libraries = AsmPrinter DebugInfoDWARF MC Object Support all-targets
|
||||
|
2
tools/llvm-dwp/llvm-dwp.cpp
Normal file
2
tools/llvm-dwp/llvm-dwp.cpp
Normal file
@ -0,0 +1,2 @@
|
||||
int main() {
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user