Displaying 7 results from an estimated 7 matches for "no_dedupl".
Did you mean:
do_dedup
2018 Jan 04
4
Fwd: LLD (macOS) usage?
Hi. I'm using LLVM 5.0.1 on macOS 10.12.
I have a very simple program (program.c):
int main() {}
When attempting to compile with LLD, I get this output:
$ clang -fuse-ld=lld program.c
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -no_deduplicate
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -dynamic
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -arch
/opt/llvm/5.0.1/bin/ld.lld: error: unknown emulation: acosx_version_min
/opt/llvm/5.0.1/bin/ld.lld: error: unable to find library -lto_library
/opt/llvm/5.0.1/bin/ld.lld: er...
2018 Jan 08
0
Fwd: LLD (macOS) usage?
...vm.org>
Subject: [llvm-dev] Fwd: LLD (macOS) usage?
Hi. I'm using LLVM 5.0.1 on macOS 10.12.
I have a very simple program (program.c):
int main() {}
When attempting to compile with LLD, I get this output:
$ clang -fuse-ld=lld program.c
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -no_deduplicate
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -dynamic
/opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -arch
/opt/llvm/5.0.1/bin/ld.lld: error: unknown emulation: acosx_version_min
/opt/llvm/5.0.1/bin/ld.lld: error: unable to find library -lto_library
/opt/llvm/5.0.1/bin/ld.lld: er...
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
...snapshot, the static library is not on the command line from snapshot:
/Applications/Xcode-11.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -Z -demangle -object_path_lto /var/folders/5c/85r7gp0909j5jbytzds1j7b40000gn/T/thinlto-bf51d2 -lto_library data_files/libLTO.dylib -no_deduplicate -dynamic -arch x86_64 -macosx_version_min 10.15.0 -debug_snapshot -filelist objects/filelist dylibs/libSystem.tbd dylibs/libc++.tbd
Steven
> On Jul 22, 2020, at 11:42 AM, Tobias Hieta <tobias at plexapp.com> wrote:
>
> Hello,
>
> Thanks for the reply Teresa and Steve...
2020 Jul 23
2
How to debug a missing symbol with ThinLTO?
...ns/Xcode-11.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -object_path_lto /var/folders/5c/85r7gp0909j5jbytzds1j7b40000gn/T/thinlto-74963a -lto_library /Applications/Xcode-11.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -no_deduplicate -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -o test /var/folders/5c/85r7gp0909j5jbytzds1j7b40000gn/T/test-d5e7a1.o src/.libs/libogg.a -debug_snapshot -lc++ -lSystem /Applications/Xc...
2018 Jan 07
0
Fwd: LLD (macOS) usage?
...m.org> wrote:
> Hi. I'm using LLVM 5.0.1 on macOS 10.12.
>
> I have a very simple program (program.c):
> int main() {}
>
> When attempting to compile with LLD, I get this output:
> $ clang -fuse-ld=lld program.c
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -no_deduplicate
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -dynamic
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -arch
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown emulation: acosx_version_min
> /opt/llvm/5.0.1/bin/ld.lld: error: unable to find library -lto_library
> /opt/...
2018 Jan 07
1
LLD (macOS) usage?
...>> wrote:
> Hi. I'm using LLVM 5.0.1 on macOS 10.12.
>
> I have a very simple program (program.c):
> int main() {}
>
> When attempting to compile with LLD, I get this output:
> $ clang -fuse-ld=lld program.c
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -no_deduplicate
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -dynamic
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown argument: -arch
> /opt/llvm/5.0.1/bin/ld.lld: error: unknown emulation: acosx_version_min
> /opt/llvm/5.0.1/bin/ld.lld: error: unable to find library -lto_library
> /opt/...
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
This is usually a problem that is not using llvm-ar. I cannot reproduce this problem with either llvm 10.0 or TOT version. Which linker version are you using? You can also try pass "-Wl,-debug_snapshot" to the command where the error produces and then locate the "*.ld-snapshot" in /tmp directory and attach that as a reproducer.
Steven
> On Jul 22, 2020, at 8:41 AM, Teresa