I am new to llvm.When I try to compile c programs using llvm-gcc i get following error: $ llvm-gcc test.c
I wrote a gist a while ago: https://gist.github.com/611157. It compiled and worked ok. I came back to it recently and it no longer complied.
When I am trying to test my application on device with default compiler setting, LLVM GCC 4.2, its giving me \"Internal compiler error: Bus error\", but it is working OK with GCC 4.2 and LLVM compiler
Below code runs just fine on GCC 4.2 but fails with EXC_BAD_ACCESS in LLVM GCC 4.2 - (double_t)readDouble{
Here\'s the log from the build. This is a brand new project in Xcode 4, so the only non-regular things in it are as follows:
I have my application set up to use the LLVM GCC 4.2 in Target>Build Settings under Compiler Version and it worked for the simulator.
I need to add to gcc support of an OpenMP-like (directive) language. I know it is possible to dump GIMPLE code and then \"undump\" it and continue compilation. I want to modify the dumped DIMPLE to ad
I\'m trying to read and call a function parsed from LLVM bitco开发者_开发知识库de in LLVM 2.8. I have everything working apart from the actual call, which crashes the program.
The code: #include <vector> #include <stack> using namespace std; class blub {}; class intvec : public std::vector<int, std::allocator<int> >, public blub {};
If I build a static library with llvm-gcc, then link it with a program compiled using mingw gcc, will the result work?