search for: dfffabb0

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

2013 Nov 26
0
[LLVMdev] Targeting ARM Cortex-a9 from x86_64 with clang
...s on the same binary, there's no reason your system assembler (whatever it is) can't, too. One day, LLVM binutils will be... ;) cheers, --renato -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131126/dfffabb0/attachment.html>
2013 Nov 26
3
[LLVMdev] Targeting ARM Cortex-a9 from x86_64 with clang
Hi, here's the canonical helloworld.c #include<stdio.h> int main() { printf("Hello World"); return 0; } In accordance with the cross-compilation LLVM documentation [1], I am trying to target the ARM on the Zedboard [2]. It is an ARM Cortex-A9. The machine I am compiling on is an x86_64 Fedora Linux machine, using clang 3.3. I am failing to generate an executable,