On Sat, Apr 09, 2005 at 02:09:14PM +0200, Sergio Ruiz wrote: > Hi, i can't link assembled pic code against the libc running my > embedded-mips-box under debian, and this is what i do: > > bluebox@bluebox:~$ as -al -EL -membedded-pic -mips1 -o prueba."o" prueba."s" PIC != embedded-pic. You shouldn't be using -membedded-pic. In fact, you shouldn't be using as directly, or ld. Always use GCC to assemble and link, and it will take care of the options for you. -- Daniel Jacobowitz CodeSourcery, LLC