[llvm-dev] [cfe-dev] strace clang refers files from lib/tls/x86_64 multiple times

mats petersson via llvm-dev llvm-dev at lists.llvm.org
Mon Feb 8 04:38:58 PST 2016


Are you sure your situation isn't similar to this:

$ which gcc
/usr/lib64/ccache/gcc
$ which clang
/usr/local/bin/clang

In other words, your `gcc` uses `ccache`, but `clang` doesn't?

That can indeed make a BIG difference in compile-time.

--
Mats


On 8 February 2016 at 12:27, Ismail Donmez via llvm-dev <
llvm-dev at lists.llvm.org> wrote:

> Hi,
>
> On Mon, Feb 8, 2016 at 12:41 PM, Oza, Hiral via cfe-dev
> <cfe-dev at lists.llvm.org> wrote:
> > Greetings!
> >
> >
> >
> > Sample program:
> >
> > int main(int argc, char **argv)
> >
> > {
> >
> >     int myLocal=0xAA;
> >
> >     return 0;
> >
> > }
> >
> >
> >
> > Command: clang t.c –o a.o –c
> >
> >
> >
> > With above simple program we are observing that clang is stat-ing and
> trying
> > to open various files from lib/tls location. Eventually all calls to
> > “lib/tls” leads to ENOENT (No such file or directory)!
>
> This is due to the way glibc searches for libraries, this is not a
> clang related thing.
>
> ismail
> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160208/8b9f5a1d/attachment.html>


More information about the llvm-dev mailing list