search for: karnajit

Displaying 2 results from an estimated 2 matches for "karnajit".

2019 Jun 13
2
Need help on identifying a patch which fixed lld on linux platform
...M 5.0 is extremely > outdated. IIUC, the first release of LLVM that includes somewhat usable > version of lld is LLVM 4.0, and I wouldn't be surprised that LLVM 5.0 has a > lot of bugs. > > Can't you simply use a newer version of lld? > > On Thu, Jun 13, 2019 at 4:01 PM karnajit wangkhem via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hi All, >> >> This test is on a ubuntu 12 box. Can anyone please point me what >> revision/commit-id of lld fixed this issue which was atleast in llvm 5.0. >> . >> ├── build.sh >>...
2019 Jun 13
4
Need help on identifying a patch which fixed lld on linux platform
Hi All, This test is on a ubuntu 12 box. Can anyone please point me what revision/commit-id of lld fixed this issue which was atleast in llvm 5.0. . ├── build.sh ├── main.c ├── shared │ └── sh.c └── static └── st.c [[ build.sh ]] #!/bin/sh CC="${TOOLCHAIN}/bin/clang" AR="${TOOLCHAIN}/bin/llvm-ar" CFLAGS="-g -O" LDFLAGS="-fuse-ld=lld" rm