Displaying 4 results from an estimated 4 matches for "kenkillerkuo".
2012 Sep 25
0
[LLVMdev] Can clang generate the same bitcode with the toolchains that have same version of libraries but different targets
Kenia Kuo <kenkillerkuo at gmail.com> writes:
[snip]
> Currently, I tried the toolchains of ARM and PowerPC that have the
> different versions of libraries, obviously the generated bitcode are
> different.
> So I wonder whether the version of library is the only reason why the
> generated bitcode are d...
2012 Sep 25
5
[LLVMdev] Can clang generate the same bitcode with the toolchains that have same version of libraries but different targets
Hi,
I'm using clang to build my project as follows:
$ clang++ -ccc-host-triple arm-none-linux-gnueabi
--sysroot=/usr/local/arm-none-linux-gnueabi/arm-none-linux-gnueabi/libc/ -o
foo.o -emit-llvm -c foo.cpp
$ clang++ -ccc-host-triple arm-none-linux-gnueabi
--sysroot=/usr/local/arm-none-linux-gnueabi/arm-none-linux-gnueabi/libc/ -o
main.o -emit-llvm -c main.cpp
$ llvm-link foo.o main.o -o
2012 Sep 25
2
[LLVMdev] Can clang generate the same bitcode with the toolchains that have same version of libraries but different targets
...ike the limitations are the platform's API and ABI (included the
size of variable).
So, if there are two platforms that have the same API, ABI but different
ISAs, the bitcode can be shared. Can I say that?
Thanks,
Kenia Kuo
2012/9/25 Óscar Fuentes <ofv at wanadoo.es>
> Kenia Kuo <kenkillerkuo at gmail.com> writes:
>
> [snip]
>
> > Currently, I tried the toolchains of ARM and PowerPC that have the
> > different versions of libraries, obviously the generated bitcode are
> > different.
> > So I wonder whether the version of library is the only reason why...
2012 Sep 25
0
[LLVMdev] Can clang generate the same bitcode with the toolchains that have same version of libraries but different targets
...t; So, if there are two platforms that have the same API, ABI but different
> ISAs, the bitcode can be shared. Can I say that?****
>
> ** **
>
> Thanks,****
>
> Kenia Kuo****
>
> ** **
>
> 2012/9/25 Óscar Fuentes <ofv at wanadoo.es>****
>
> Kenia Kuo <kenkillerkuo at gmail.com> writes:
>
> [snip]****
>
>
> > Currently, I tried the toolchains of ARM and PowerPC that have the
> > different versions of libraries, obviously the generated bitcode are
> > different.
> > So I wonder whether the version of library is the only r...