On 25 Nov 2012, at 07:02, Eduardo Osorio Armenta wrote: > GNUmakefile:23: GNUstep found - building for install in the GNUstep > filesystem. > Assembling objc_msgSend.S... > objc_msgSend.x86-32.S: Assembler messages: > objc_msgSend.x86-32.S:92: Error: junk `.get_pc_thunk.bx' after expression > objc_msgSend.x86-32.S:96: Error: junk `.get_pc_thunk.bx' after expression > objc_msgSend.x86-32.S:100: Error: junk `.get_pc_thunk.bx' after expression > make: *** [objc_msgSend.o] Error 1
Are you compiling for x86-64 or x86-32? It's possible that GCC in 4.6 or later has changed the macros that it defines so that you're accidentally getting the 32-bit version instead of the 64-bit one. David P.S. Your life will be much easier if you just build Objective-C-related stuff with clang. You'll even get a modern dialect of the language... -- Sent from my STANTEC-ZEBRA _______________________________________________ Discuss-gnustep mailing list [email protected] https://lists.gnu.org/mailman/listinfo/discuss-gnustep
