Displaying 3 results from an estimated 3 matches for "pr4960".
Did you mean:
pr4900
2009 Nov 09
1
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue
...c application. As clang requires a
> working gcc on target i used to "-ccc-clang-archs" options to skip the
> need for gcc on target. But still i am getting the following error.
By commenting out that line will make your llvm version crash
sporadically since you would recreate llvm PR4960 if using the llvm JIT.
http://llvm.org/bugs/show_bug.cgi?id=4960
__clear_cache are needed to clear the instructioncache after jitting a
function and this gcc builtin are found in gcc 4.3.3 and later or
CodeSourcery's 2007Q3/2008Q1 compiler releases and later.
Try updating you cross compiler!...
2009 Nov 09
2
[LLVMdev] Compilation error while cross compiling LLVM for ARM
Hi,
i am a newbie to llvm architecture. i have been trying to port llvm on ARM
target. i am using the following configuration for cross compiling llvm.
../llvm/configure --host=arm-linux --target=arm-linux --build=i686-linux
--prefix=/opt/llvm-arm/ --enable-optimized --disable-debug \
--disable-expensive-checks --disable-doxygen \
--disable-threads --enable-targets=cbe,cpp,arm
using this
2009 Nov 13
0
[LLVMdev] Compilation error while cross compiling LLVM for ARM - the __clear_cache issue
...requires a
> > working gcc on target i used to "-ccc-clang-archs" options to skip the
> > need for gcc on target. But still i am getting the following error.
>
> By commenting out that line will make your llvm version crash
> sporadically since you would recreate llvm PR4960 if using the llvm JIT.
> http://llvm.org/bugs/show_bug.cgi?id=4960
>
> __clear_cache are needed to clear the instructioncache after jitting a
> function and this gcc builtin are found in gcc 4.3.3 and later or
> CodeSourcery's 2007Q3/2008Q1 compiler releases and later.
>
>...