-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Driver] Add linker options to support statical linking to shared flang-rt on AIX. #131822
Conversation
@llvm/pr-subscribers-clang-driver @llvm/pr-subscribers-backend-powerpc Author: Daniel Chen (DanielCChen) ChangesThis is to support statical linking to shared Full diff: https://github.com/llvm/llvm-project/pull/131822.diff 1 Files Affected:
diff --git a/clang/lib/Driver/ToolChains/AIX.cpp b/clang/lib/Driver/ToolChains/AIX.cpp
index 001f3a5178943..7ed26c42c80ce 100644
--- a/clang/lib/Driver/ToolChains/AIX.cpp
+++ b/clang/lib/Driver/ToolChains/AIX.cpp
@@ -127,8 +127,15 @@ void aix::Linker::ConstructJob(Compilation &C, const JobAction &JA,
}
// Force static linking when "-static" is present.
- if (Args.hasArg(options::OPT_static))
+ if (Args.hasArg(options::OPT_static)) {
CmdArgs.push_back("-bnso");
+ // The folllowing linker options are needed to statically link to the
+ // shared libflang_rt.runtime.a on AIX
+ CmdArgs.push_back("-bI:/usr/lib/syscalls.exp");
+ CmdArgs.push_back("-bI:/usr/lib/aio.exp");
+ CmdArgs.push_back("-bI:/usr/lib/threads.exp");
+ CmdArgs.push_back("-lcrypt");
+ }
// Add options for shared libraries.
if (Args.hasArg(options::OPT_shared)) {
|
0a0e52f
to
21f3ec3
Compare
@@ -127,9 +127,19 @@ void aix::Linker::ConstructJob(Compilation &C, const JobAction &JA, | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change needs a test somewhere at flang/test/Driver/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the comment!
Yes. I will add test.
clang/lib/Driver/ToolChains/AIX.cpp
Outdated
if (D.IsFlangMode()) { | ||
// The folllowing linker options are needed to statically link to the | ||
// shared libflang_rt.runtime.a on AIX | ||
CmdArgs.push_back("-bI:/usr/lib/syscalls.exp"); | ||
CmdArgs.push_back("-bI:/usr/lib/aio.exp"); | ||
CmdArgs.push_back("-bI:/usr/lib/threads.exp"); | ||
CmdArgs.push_back("-lcrypt"); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this add extra options even when libflang_rt.runtime.a
is not being linked in?
See https://github.com/llvm/llvm-project/blob/main/clang/lib/Driver/ToolChains/AIX.cpp#L359-L365
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These extra options will be linked in when flang
is the invocation driver and -static
is specified. As the driver code is written in PR #131041, libflang_rt.runtime.a
is always linked in with the full path name no matter if it is static or shared.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the driver code is written in PR #131041,
libflang_rt.runtime.a
is always linked in with the full path name no matter if it is static or shared.
The other PR does not change the lines I referenced in a way that causes libflang_rt.runtime.a
to always be linked in.
Note that the reason |
There is also a |
if (D.IsFlangMode()) { | ||
// The folllowing linker options are needed to statically link to the | ||
// shared libflang_rt.runtime.a on AIX | ||
CmdArgs.push_back("-bI:/usr/lib/syscalls.exp"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is a bit misplaced, IIUC these options are needed to link libc
statically, not flang_rt
itself (-static
just happens to mean we link both).
Thus, I think this belongs where we push_back -lc
for the AIX toolchain, so here:
CmdArgs.push_back("-lc"); |
Also, I don't think this really belongs under the -static
option, that is really an ld
option which says, only link to static libs. Typically there are separate options to link particular runtimes statically. Since this is really for libc
, I'd suggest -static-libc
.
28907a6
to
f165dfb
Compare
After further internal discussion. we decided to withdraw this PR until we hash out a few more details. |
This is to support statical linking to shared
flang-rt
on AIX.Users should be able to do
flang -static t.f
. Thea.out
generated should not have dependencies on the shared libraries.