[llvm-config] Remove --src-root option
Remove the `--src-root` option from the deprecated llvm-config tool. None of the llvm-project projects use this option anymore. The value was only meaningful for in-tree use and usually became no longer correct once LLVM was installed -- either because it was built in a temporary directory, or installed from a binary package and built on a different system entirely. Therefore, third-party tools could not have been relying on it anyway. The LLVM_SRC_ROOT #define is left intact, as it is used to compute includedir when llvm-config is used in-source. Differential Revision: https://reviews.llvm.org/D137144
This commit is contained in:
parent
a8604f2254
commit
c061892fcd
|
@ -130,10 +130,6 @@ OPTIONS
|
||||||
|
|
||||||
Print how the provided components can be collectively linked (`shared` or `static`).
|
Print how the provided components can be collectively linked (`shared` or `static`).
|
||||||
|
|
||||||
**--src-root**
|
|
||||||
|
|
||||||
Print the source root from which LLVM was built.
|
|
||||||
|
|
||||||
**--system-libs**
|
**--system-libs**
|
||||||
|
|
||||||
Print all the system libraries needed to link against the specified LLVM
|
Print all the system libraries needed to link against the specified LLVM
|
||||||
|
|
|
@ -234,7 +234,6 @@ Options:\n\
|
||||||
--obj-root Print the object root used to build LLVM.\n\
|
--obj-root Print the object root used to build LLVM.\n\
|
||||||
--prefix Print the installation prefix.\n\
|
--prefix Print the installation prefix.\n\
|
||||||
--shared-mode Print how the provided components can be collectively linked (`shared` or `static`).\n\
|
--shared-mode Print how the provided components can be collectively linked (`shared` or `static`).\n\
|
||||||
--src-root Print the source root LLVM was built from.\n\
|
|
||||||
--system-libs System Libraries needed to link against LLVM components.\n\
|
--system-libs System Libraries needed to link against LLVM components.\n\
|
||||||
--targets-built List of all targets currently built.\n\
|
--targets-built List of all targets currently built.\n\
|
||||||
--version Print LLVM version.\n\
|
--version Print LLVM version.\n\
|
||||||
|
@ -592,8 +591,6 @@ int main(int argc, char **argv) {
|
||||||
PrintSharedMode = true;
|
PrintSharedMode = true;
|
||||||
} else if (Arg == "--obj-root") {
|
} else if (Arg == "--obj-root") {
|
||||||
OS << ActivePrefix << '\n';
|
OS << ActivePrefix << '\n';
|
||||||
} else if (Arg == "--src-root") {
|
|
||||||
OS << LLVM_SRC_ROOT << '\n';
|
|
||||||
} else if (Arg == "--ignore-libllvm") {
|
} else if (Arg == "--ignore-libllvm") {
|
||||||
LinkDyLib = false;
|
LinkDyLib = false;
|
||||||
LinkMode = BuiltSharedLibs ? LinkModeShared : LinkModeAuto;
|
LinkMode = BuiltSharedLibs ? LinkModeShared : LinkModeAuto;
|
||||||
|
|
Loading…
Reference in New Issue