Fathi Boudra <[email protected]> writes: > Hi porters, Hi,
> > Qt 4.5.1 fails to build from scratch on mips architecture: > https://buildd.debian.org/fetch.cgi?pkg=qt4-x11;ver=4.5.1-1;arch=mips;stamp=1240601561 > > [...] > /tmp/cca4rlw0.s: Assembler messages: > /tmp/cca4rlw0.s:44: Error: opcode not supported on this processor: > mips1 (mips1) `ll $3,0($2)' > [...] ll is available on mips2 and later mips cpu. Try adding : .set push .set mips2 before the "ll" opcode and .set pop after the "sc" opcode (as I assume there's a "sc" later). Arnaud -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

