Displaying 3 results from an estimated 3 matches for "e0a8416b".
2012 Feb 27
0
[LLVMdev] Generate Executable to Mips
Thanks Akira,
it worked!
On Thu, Feb 23, 2012 at 10:01 PM, Akira Hatanaka <ahatanak at gmail.com> wrote:
> You will need to install a cross compiler.
> I think you can find one somewhere in this link:
> https://sourcery.mentor.com/GNUToolchain/
>
> Once you have a cross compiler, this should do what you want (if you
> want little-endian code):
>
> clang -target
2012 Feb 24
2
[LLVMdev] Generate Executable to Mips
You will need to install a cross compiler.
I think you can find one somewhere in this link:
https://sourcery.mentor.com/GNUToolchain/
Once you have a cross compiler, this should do what you want (if you
want little-endian code):
clang -target mipsel-unknown-linux -ccc-clang-archs mipsel -O3
hello.c -o hello.bc -emit-llvm
llc -march=mipsel hello.bc -o hello.s
mips-linux-gnu-gcc hello.s -o hello
2012 Feb 28
3
[LLVMdev] Generate Executable to Mips
...___
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120227/e0a8416b/attachment.html>