-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
[SR-3819] ICU often needs -ldl, even if linked statically #46404
Comments
The link args come from utils/static-executable-args.lnk, which is copied into place by CMake. We could do some configure-time tests to figure out whether |
@belkadan yes, I had seen that file and it would be enough to put But thinking about it, it probably improves the current situation because 1) it's unlikely that your ICU is compiled with |
I was thinking rather than update the file directly, we would change it to use CMake's configure_file feature, which allows us to insert substitutions. I'm fine with CMake calling icu-config. |
I suppose that's not great for binary distributions, though. |
Sorry about that. But yes, as you say it shouldn't really be checked on the system that builds swiftc. And I'm guessing most users use the binary distribution... |
For static binaries (using the To work around this I added a My intention with |
@spevans, I do agree that |
You are correct that if Swift is compiled with If the only reason to create static binaries using The alternative is to not copy/create the
This is probably the correct action to take when libicu hasnt been built to be fully static. |
After #19860 has been merged, can this issue be closed now? |
No, it requires the fix in #15183 which just needs an update for PR comments but otherwise works: $ cat test.swift
print("Hello")
$ ~/swift-install/usr/bin/swiftc -static-executable -o test test.swift
$ ./test
Hello
$ ldd test
not a dynamic executable
$ ls -l test
-rwxrwxr-x 1 spse spse 36853040 Nov 4 21:50 test |
@spevans cool, thanks! Mind checking https://github.com/apple/swift/blob/master/utils/static-executable-args.lnk#L15 So if this is truly fixed, then we should remove |
Ok, firstly libICU is now compiled without use of $ nm ~/swift-install/usr/lib/swift_static/linux/libicuucswift.a |grep ' dl'
$ nm ~/swift-install/usr/lib/swift_static/linux/libicui18nswift.a |grep ' dl'
$ nm ~/swift-install/usr/lib/swift_static/linux/libicudataswift.a |grep ' dl'
$ cat ~/swift-install/usr/lib/swift_static/linux/static-executable-args.lnk
-static
-lswiftCore
-lswiftImageInspectionStatic
-lpthread
-latomic
-licui18nswift
-licuucswift
-licudataswift
$ ~/swift-install/usr/bin/swiftc -v -static-executable -o static_test ~/src/test/test.swift
Swift version 4.2-dev (LLVM 49db994493, Clang 256dc06b21, Swift b5d0def2db)
Target: x86_64-unknown-linux-gnu
/home/spse/swift-install/usr/bin/swift -frontend -c -primary-file /home/spse/src/test/test.swift -target x86_64-unknown-linux-gnu -disable-objc-interop -color-diagnostics -module-name static_test -o /tmp/test-fc87ff.o
/home/spse/swift-install/usr/bin/swift-autolink-extract /tmp/test-fc87ff.o -o /tmp/test-f85369.autolink
/usr/bin/clang++ -fuse-ld=gold -target x86_64-unknown-linux-gnu /tmp/test-fc87ff.o @/tmp/test-f85369.autolink -L /home/spse/swift-install/usr/lib/swift_static/linux @/home/spse/swift-install/usr/lib/swift_static/linux/static-executable-args.lnk --target=x86_64-unknown-linux-gnu -v -o static_test
clang version 6.0.0-1ubuntu2 (tags/RELEASE_600/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/8
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.3.0
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8
Selected GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0
Candidate multilib: .;@m64
Selected multilib: .;@m64
"/usr/bin/ld.gold" -z relro --hash-style=gnu -m elf_x86_64 -static -o static_test /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/../../../x86_64-linux-gnu/crt1.o /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/../../../x86_64-linux-gnu/crti.o /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/crtbeginT.o -L/home/spse/swift-install/usr/lib/swift_static/linux -L/usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0 -L/usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/../../../x86_64-linux-gnu -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/../../.. -L/usr/lib/llvm-6.0/bin/../lib -L/lib -L/usr/lib /tmp/test-fc87ff.o -lswiftSwiftOnoneSupport -lswiftCore -lswiftCore -lswiftImageInspectionStatic -lpthread -latomic -licui18nswift -licuucswift -licudataswift -lstdc++ -lm --start-group -lgcc -lgcc_eh -lc --end-group /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/crtend.o /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/../../../x86_64-linux-gnu/crtn.o Note however that glibc still has its own internal dl* functions but none of the $ nm static_test |grep ' dl'
0000000000844da0 t dlclose_doit
00000000023b97a0 b dl_close_state.10955
0000000000841790 t dlinfo_doit
00000000008082b0 W dl_iterate_phdr
00000000008418e0 t dlmopen_doit
0000000000844ca0 t dlopen_doit
0000000000842a80 t dl_open_worker
0000000000844de0 t dlsym_doit
0000000000844eb0 t dlvsym_doit |
@spevans awesome, thanks! Yes, the glibc ones we can't fix without dropping glibc which is a bigger task not for today. Should we then just remove |
Removing |
@weissi, can this be closed now that the linux toolchain no longer uses separate ICU libraries? |
@finagolfin
but when I install
which then makes tl;dr: The toolchains still requires libicu in certain situations. Not sure about |
OK, but this issue isn't whether FoundationXML needs libicu, but whether building on linux generally works. For that niche case of linking FoundationXML dynamically, you say it's working, whereas I don't think we support building FoundationXML with static executables. So where's the problem now? |
That's fair. Let's close. |
Attachment: Download
Additional Detail from JIRA
md5: 52de48fd6048234a1c72d6a42d29e78d
Issue Description:
If ICU isn't compiled with
--disable-dyload
it'll need-ldl
to be linked. That's a problem in Swift when producing a static executable:My Swift compiler is version
which is master of 2017-02-01.
I already verified that it can be fixed the following way:
the only difference between this and the standard invocation is the
-ldl
inbetween the--start-group
and--end-group
linker flags.I'd be happy to fix this but I'm unsure where exactly to do that. Any pointers?
Notes
I'm running Ubuntu 16.04
it's not enough to just pass
-ldl
toswiftc
(or-Xlinker -ldl
)the
-ldl
NEEDS to be in betweenld.gold
's--start-group
and--end-group
and I'm unsure how to get it therethe addition of
-ldl
should obviously only happen if ICU is compiled without--disable-dyload
.The text was updated successfully, but these errors were encountered: