fix-llvm-config-obj-src-root

Gbp-Pq: Name fix-llvm-config-obj-src-root.patch
This commit is contained in:
LLVM Packaging Team 2022-06-27 14:58:45 +08:00 committed by Lu zhiping
parent 178f56b13b
commit 74433d4d86
1 changed files with 2 additions and 2 deletions

View File

@ -557,9 +557,9 @@ int main(int argc, char **argv) {
} else if (Arg == "--shared-mode") {
PrintSharedMode = true;
} else if (Arg == "--obj-root") {
OS << ActivePrefix << '\n';
OS << ActivePrefix << "/build/" << '\n';
} else if (Arg == "--src-root") {
OS << LLVM_SRC_ROOT << '\n';
OS << ActivePrefix << "/build/" << '\n';
} else if (Arg == "--ignore-libllvm") {
LinkDyLib = false;
LinkMode = BuiltSharedLibs ? LinkModeShared : LinkModeAuto;