[PATCH] D137375: [AIX][pg] Add Correct Search Paths for Profiled Libraries
Michael Francis via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Nov 6 17:22:34 PST 2022
francii updated this revision to Diff 473528.
francii added a comment.
Including test case
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137375/new/
https://reviews.llvm.org/D137375
Files:
clang/lib/Driver/ToolChains/AIX.cpp
clang/test/Driver/aix-ld.c
Index: clang/test/Driver/aix-ld.c
===================================================================
--- clang/test/Driver/aix-ld.c
+++ clang/test/Driver/aix-ld.c
@@ -162,6 +162,8 @@
// CHECK-LD64-GPROF-NOT: "--no-as-needed"
// CHECK-LD64-GPROF-NOT: "-lm"
// CHECK-LD64-GPROF: "-lc"
+// CHECK-LD64-GPROF: "-L/lib/profiled"
+// CHECK-LD64-GPROF: "-L/usr/lib/profiled"
// Check powerpc-ibm-aix7.1.0.0, 32-bit. Static linking.
// RUN: %clang %s -### 2>&1 \
Index: clang/lib/Driver/ToolChains/AIX.cpp
===================================================================
--- clang/lib/Driver/ToolChains/AIX.cpp
+++ clang/lib/Driver/ToolChains/AIX.cpp
@@ -250,6 +250,11 @@
CmdArgs.push_back("-lm");
CmdArgs.push_back("-lc");
+
+ if (Args.hasArg(options::OPT_pg)) {
+ CmdArgs.push_back("-L/lib/profiled");
+ CmdArgs.push_back("-L/usr/lib/profiled");
+ }
}
const char *Exec = Args.MakeArgString(ToolChain.GetLinkerPath());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D137375.473528.patch
Type: text/x-patch
Size: 972 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221107/ec00b1f9/attachment.bin>
More information about the cfe-commits
mailing list