Tagged Questions
0
votes
1answer
63 views
GNU Linker and architecture i386
So I'm running on OS X and I want to link two Mach-O objects i386.
The first is generated from NASM (it's an assembly file)
nasm -f macho -o kernel.o kernel.asm
The second is generated from GCC
...
1
vote
2answers
424 views
nasm and gcc: 32 bit linking failed (64 bit Mac OS X)
I've just compiled a assembley file with nasm this way:
$ nasm -f elf somefile.asm -o somefile.o
After that I want to link somefile.o to a programm with gcc
$ gcc -m32 somefile.o -o someprogramm
...
2
votes
1answer
3k views
Link error- missing required architecture i386 in file-symbols not found
I am working on an app that uses a twitter API.
The app runs fine when it is hooked up to an IOS device, but when I change the architecture from armv6 to i386 to get it running on the simulator I ...
