lunedì 20 dicembre 2010

Eclipse: what a pain to build

I was trying to build eclipse from sources, but I didn't find any detailed instruction. Then, someone pointed me to [1], where I found the ppc binaries, and the sources, and detailed instruction :)

Thank you  !


[1] http://download.eclipse.org/eclipse/downloads/drops/R-3.6.1-201009090800/index.php

sabato 11 dicembre 2010

Unsupported relocation against r0

Today I'm building mono-2.8 for ArchlinuxPPC, and I get this error from the assembler:

{standard input}: Assembler messages:
{standard input}:26505: Error: unsupported relocation against r0
make: *** [libmonoruntimesgen_la-sgen-gc.lo] Error 1

The solution is modifying CFLAGS:
export CFLAGS="$CFLAGS -Xassembler -mregnames" 

Have a nice day