forked from OSchip/llvm-project
Target/LLVMBuild: Order components alphabetically.
llvm-svn: 144415
This commit is contained in:
parent
c85e3ff334
commit
b8a9c43d07
|
|
@ -15,7 +15,30 @@
|
||||||
;
|
;
|
||||||
;===------------------------------------------------------------------------===;
|
;===------------------------------------------------------------------------===;
|
||||||
|
|
||||||
|
; This is a special group whose required libraries are extended (by llvm-build)
|
||||||
|
; with the best execution engine (the native JIT, if available, or the
|
||||||
|
; interpreter).
|
||||||
[component_0]
|
[component_0]
|
||||||
|
type = LibraryGroup
|
||||||
|
name = Engine
|
||||||
|
parent = Libraries
|
||||||
|
|
||||||
|
; This is a special group whose required libraries are extended (by llvm-build)
|
||||||
|
; with the configured native target, if any.
|
||||||
|
[component_1]
|
||||||
|
type = LibraryGroup
|
||||||
|
name = Native
|
||||||
|
parent = Libraries
|
||||||
|
|
||||||
|
; This is a special group whose required libraries are extended (by llvm-build)
|
||||||
|
; with the configured native code generator, if any.
|
||||||
|
[component_2]
|
||||||
|
type = LibraryGroup
|
||||||
|
name = NativeCodeGen
|
||||||
|
parent = Libraries
|
||||||
|
|
||||||
|
; The component for the actual target library itself.
|
||||||
|
[component_3]
|
||||||
type = Library
|
type = Library
|
||||||
name = Target
|
name = Target
|
||||||
parent = Libraries
|
parent = Libraries
|
||||||
|
|
@ -24,30 +47,7 @@ required_libraries = Core MC Support
|
||||||
; This is a special group whose required libraries are extended (by llvm-build)
|
; This is a special group whose required libraries are extended (by llvm-build)
|
||||||
; with every built target, which makes it easy for tools to include every
|
; with every built target, which makes it easy for tools to include every
|
||||||
; target.
|
; target.
|
||||||
[component_1]
|
[component_4]
|
||||||
type = LibraryGroup
|
type = LibraryGroup
|
||||||
name = all-targets
|
name = all-targets
|
||||||
parent = Libraries
|
parent = Libraries
|
||||||
|
|
||||||
; This is a special group whose required libraries are extended (by llvm-build)
|
|
||||||
; with the configured native target, if any.
|
|
||||||
[component_2]
|
|
||||||
type = LibraryGroup
|
|
||||||
name = Native
|
|
||||||
parent = Libraries
|
|
||||||
|
|
||||||
; This is a special group whose required libraries are extended (by llvm-build)
|
|
||||||
; with the configured native code generator, if any.
|
|
||||||
[component_3]
|
|
||||||
type = LibraryGroup
|
|
||||||
name = NativeCodeGen
|
|
||||||
parent = Libraries
|
|
||||||
|
|
||||||
; This is a special group whose required libraries are extended (by llvm-build)
|
|
||||||
; with the best execution engine (the native JIT, if available, or the
|
|
||||||
; interpreter).
|
|
||||||
[component_4]
|
|
||||||
type = LibraryGroup
|
|
||||||
name = Engine
|
|
||||||
parent = Libraries
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue