search for: llvm_bin_path

Displaying 1 result from an estimated 1 matches for "llvm_bin_path".

2012 Mar 14
0
[LLVMdev] ARM EHABI support in LLVM + clang
...me know what is the current state of ARM EHABI support for C++ exceptions? I am not sure whether DwarfException::EmitExceptionTable is appropriate to make ARM EHABI specific changes. If someone is already working on this pls let me know your comments. I have mentioned the steps I have followed.   $LLVM_BIN_PATH/clang --sysroot=$SYSROOT a.cpp -funwind-tables -ccc-host-triple arm-linux-gnueabi -mcpu=cortex-a9 -emit-llvm -c -o a.bc $LLVM_BIN_PATH/llc -mtriple=arm-linux-gnueabi -arm-enable-ehabi -arm-enable-ehabi-descriptors -march=arm a.bc arm-linux-gnueabi-g++ --sysroot=$SYSROOT -static a.s -o a.bin   ====...