mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
9079e12d3f
Summary: This change spans both LLVM and compiler-rt, where we do the following: - Add XRay to the LLVMBuild system, to allow for distributing the XRay trace loading library along with the LLVM distributions. - Use `llvm-config` better in the compiler-rt XRay implementation, to depend on the potentially already-distributed LLVM XRay library. While this is tested with the standalone compiler-rt build, it does require that the LLVMXRay library (and LLVMSupport as well) are available during the build. In case the static libraries are available, the unit tests will build and work fine. We're still having issues with attempting to use a shared library version of the LLVMXRay library since the shared library might not be accessible from the standard shared library lookup paths. The larger change here is the inclusion of the LLVMXRay library in the distribution, which allows for building tools around the XRay traces and profiles that the XRay runtime already generates. Reviewers: echristo, beanz Subscribers: mgorny, hiraditya, mboerger, llvm-commits Differential Revision: https://reviews.llvm.org/D52349 llvm-svn: 342859
53 lines
971 B
Plaintext
53 lines
971 B
Plaintext
;===- ./lib/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
|
|
;
|
|
;===------------------------------------------------------------------------===;
|
|
|
|
[common]
|
|
subdirectories =
|
|
Analysis
|
|
AsmParser
|
|
Bitcode
|
|
CodeGen
|
|
DebugInfo
|
|
Demangle
|
|
ExecutionEngine
|
|
FuzzMutate
|
|
LineEditor
|
|
Linker
|
|
IR
|
|
IRReader
|
|
LTO
|
|
MC
|
|
Object
|
|
BinaryFormat
|
|
ObjectYAML
|
|
Option
|
|
Passes
|
|
ProfileData
|
|
Support
|
|
TableGen
|
|
Target
|
|
Testing
|
|
ToolDrivers
|
|
Transforms
|
|
WindowsManifest
|
|
XRay
|
|
|
|
[component_0]
|
|
type = Group
|
|
name = Libraries
|
|
parent = $ROOT
|