Displaying 1 result from an estimated 1 matches for "dijkstra_larg".
Did you mean:
dijkstra_large
2013 Dec 17
1
[LLVMdev] Cross compiling to ARM using LLC {Help}
Hello,
I'm trying to cross compile the MiBench benchmarks using LLC and ARM cross compiler the binaries generated will be used on pandaboard or the qemu-arm emulator.
I have faced multiple issues during the compilation process, here are the commands used.
# generate LLVM-IR for dijkstra_large.c
$gcc -S -flto -o dijkstra_large.bc -fplugin=${DRAGONEGG} dijkstra_large.c
# generate TARGET object file for dijkstra_large.bc
$./llc -march=arm -mcpu=cortex-a9 dijkstra_large.bc -o dijkstra_large.o -filetype=obj -O3
# Generate executalbe using Target's toolchain
$arm-linux-gcc -static dijkst...