Ivan Reche scripsit: > I've tried to achieve it like the following: > > C_COMPILER=mipsel-linux-uclibc-gcc make PLATFORM=linux
That's never going to work. You have to write, beg, borrow, or steal a translation of apply-hack into MIPS assembly language and put it in a file named "apply-hack.mips.S". Without that, you can't even start. Then you need to construct Makefile.cross-linux-mipsel-linux, which will need to contain appropriate definitions for the MIPS environment and the cross compiler. You can use Makefile.linux and Makefile.cross-linux-mingw to show you the way. Then you build with "make PLATFORM=cross-linux-mipsel-linux". You may have to add some other conditionalized stuff, since you are building with uClibc. -- John Cowan http://www.ccil.org/~cowan [email protected] The native charset of SMS messages supports English, French, mainland Scandinavian languages, German, Italian, Spanish with no accents, and GREEK SHOUTING. Everything else has to be Unicode, which means you get only 70 16-bit characters in a text instead of 160 7-bit characters. _______________________________________________ Chicken-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/chicken-users
