Displaying 2 results from an estimated 2 matches for "01185eca".
2010 Dec 06
0
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
> memory. AsĀ I mentioned earlier, If I explicitly allocate memory using new
> operation then everything works fine. Please let me know why do we actually
> fail without using new, that to a arbitrary pointer which is never used in
> the program.
x86 and ARM have different ABIs, so you was just lucky. You can read
e.g. http://llvm.org/docs/FAQ.html#platformindependent for more
2010 Dec 06
4
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
Thanx for a prompt reply.
I will definitely try llvm 2.8 as per your suggestion.
However Step 1 and Step 2 are working for me in case of a simple hello world
program on arm processor . Similarly I am able to run a GTK application on
arm. However while running wxGTKwidget app it crashes while allocation of
memory. As I mentioned earlier, If I explicitly allocate memory using new
operation then