i386 is the mark used on the Intel 80386 processor

learn more… | top users | synonyms

15
votes
4answers
41k views

Undefined symbols for architecture i386 [duplicate]

Possible Duplicate: symbol(s) not found for architecture i386 I have an app to complete, and when I start trying to understand what the previous developer did (it was done with Xcode 3 I ...
12
votes
2answers
2k views

Register allocation and spilling, the easy way?

I'm looking for a way to allocate local variables to registers. I'm aware of a couple of serious methods for doing it (namely, those mentioned on Wikipedia), but I'm stuck on how "spilling" is ...
10
votes
2answers
12k views

missing required architecture i386 in file

I am having trouble building my app after adding MapKit and CoreLocation frameworks. They are both 4.3 frameworks, and the app used to work fine with UIKit, CoreGraphics, and Foundation, just giving ...
7
votes
1answer
637 views

How to map 1GB (or more) of physical memory

I have a setup with 2GB of memory and I would like to map 1GB (or more) of physical memory into user space virtual address. It is in theory possible since with 32bits setup, 3GB of virtual address is ...
5
votes
2answers
4k views

Error Message: Undefined symbols for architecture i386 using ZBar Libraries

I'm having a problem right now with a project I'm trying to build in Xcode 4.0, hopefully someone can shed some light on this for me.. I'm trying to use the ZBar SDK and have followed the ...
4
votes
2answers
444 views

How do programs support i386 and ppc at the same time?

I would like to know how you can support i386 and ppc architectures for programs at /bin. I run for instance bin $ file amber I get amber: setgid Mach-O universal binary with 2 architectures ...
4
votes
2answers
773 views

i386 vs. AMD64 ABI Differences

Where can I find all the differences in data types between the i386 & AMD64 Application Binary Interface(ABI)s ? I know that the long type is 32-bit in i386 ABI & 64-bit in AMD64. Is this ...
4
votes
3answers
243 views

How to disassemble movb instruction

I am writing a disassembler and I was reviewing the instruction format (and doing some disassembling by hand) and I ran into an instruction that I can't seem to be able to decode. The output for that ...
4
votes
2answers
237 views

GCC extended asm, struct element offset encoding

I am trying to write a small piece of my code in GCC style extended asm (x86-64 target) and am having trouble encoding struct offsets. I have a struct s with a member size_t a[], a pointer to such a ...
4
votes
6answers
251 views

Implementing traceback on i386

I am currently porting our code from an alpha (Tru64) to an i386 processor (Linux) in C. Everything has gone pretty smoothly up until I looked into porting our exception handling routine. Currently we ...
4
votes
1answer
250 views

App crashes on i386, works on x86_64

I tried switching architectures in my Xcode project today, because I was about to use low level QuickTime stuff that's not yet ported to 64 bit yet. When i compiled before on x86_64 my app ran just ...
3
votes
4answers
2k views

Compiling x264 for i386

How would I compile the x264 library for the i386 architecture? Usually to force an architecture I would use the follow command: ./configure CC="gcc -arch i386" CXX="g++ -arch i386" But it doesn't ...
3
votes
1answer
87 views

Linux x86/x64: Turn off misaligned data fixups

I've got some code I'm testing on Linux x86/x64. I want to turn off the automatic fixing of misaligned data to simulate what would happen on an ARM processor. On Windows, I can do it with ...
3
votes
3answers
2k views

ld: warning: ignoring file [path], missing required architecture i386 in file

I get this error message when I try to run the iPhone Simulator. I use Xcode 4 ld: warning: ignoring file /Users/Marius/Documents/AppSchool/Telefonbok/AddressBook.framework/AddressBook, missing ...
2
votes
2answers
2k views

iOS simulator on mac is running i386 architecture, not armv7?

I've got some static libraries I've built for use on armv7 architectures. When I try to use them in a iOS project which I testrun on the iphone 5.0 simulator, I get errors telling me about undefined ...
2
votes
4answers
3k views

Division and modulus using single divl instruction (i386, amd64)

I was trying to come up with inline assembly for gcc to get both division and modulus using single divl instruction. Unfortunately, I am not that good at assembly. Could someone please help me on ...
2
votes
1answer
228 views

Choose the 32 or 64 bit version of an app from command line (mac os x)

I'm on Mac OS X, and I have an executable binary which is compatible with the x86_64 and i386 architectures. From the command-line, I would like to choose which of these architectures has to be ...
2
votes
1answer
2k views

Not able to debug and run the application in iPhone device using the XCode4

I trying to install the application into my device, i am getting lots of warning messages and one error. I am using MAC 10.7 and Xcode 4.1 warning: no rule to process file ...
2
votes
2answers
436 views

How to translate “pushl 2000” from AT&T asm to Intel syntax on i386

I'm trying to translate the following from AT&T assembly to Intel assembly: pushl 2000 Now this compiles down to: ff 35 d0 07 00 00 pushl 0x7d0 But no matter what I try, I cannot get ...
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 ...
2
votes
2answers
296 views

While using two static library in project, conflict due to class with same name compiled in both static libraries

I have implemented two static library having the following structure: FirstStaticLibrary.a BaseClass.h @interface BaseClass -some methods @end FirstDerivedClass.h @interface ...
2
votes
1answer
444 views

How can I set Xcode Organizer to run with x86_64 binaries?

I'm programming in fortran and I could use a nice interface to a debugger. Following the advice of this page, I decided to give the Xcode organizer a try. I can get my program to build fine but when ...
2
votes
1answer
125 views

Assembling i386 code on x86_64

The following code does not work as expected: .intel_syntax noprefix .arch i386 .data hello_world: .ascii "Hello world!\n" hello_world_end: .equ hello_world_len, hello_world_end - hello_world .text ...
2
votes
3answers
3k views

/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or directory

I am trying to install roccc 2.0. I have installed required packages. Now while installing it, it is giving me this error: /usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or ...
2
votes
2answers
2k views

Whats the difference between armv6 and i386?

I am trying to link libssh2.dylib (a 3rd party library compiled by Matthew Wilkinson using libssh2 library from http://www.libssh2.org) to my xcode project but when I try the following code: const ...
2
votes
1answer
436 views

Boost XCode i386

I need to use i386 with Boost because of another SDK I'm using. I tried building Boost with ./b2 toolset=darwin architecture=x86 address-model=32 to get the 32-bit version, but it's giving me a ...
2
votes
1answer
418 views

How can I force qtcreator to create non-universal binaries

When I use qtcreator on mac, it creates universal binaries. Does anyone know how to set it so it just creates a 'native' binary? (So i386' in my case?) Qtcreator uses qmake as a buildsystem. ...
2
votes
2answers
211 views

Can a process running a 32bit compiled binary use more than 4gb of memory?

Is it possible for a single process running a 32bit compiled version of python in Snow Leopard (64bit machine) to appear to consume > 4gb (say 5.4gb) of virtual memory as seen by the top command? I ...
2
votes
2answers
666 views

Autoconf ignores compiler flags

I'm trying to build a C library with a non-native architecture. I'm running OSX 10.6 (which is x86_64) but I need the library compiled for i386. Normally, you can just add the compiler flag: -arch ...
2
votes
0answers
119 views

Undefined symbols for architecture i386 linker command failed with exit code 1 (use -v to see invocation)

I have looked through other questions that had similar issues, but I still can't figure out what is wrong. This is my first app and the other answers didn't make much sense. I keep getting the same ...
2
votes
1answer
253 views

no product after “build success” of a cocoa touch static library project

I have searched so many problem but there is no the same as me. on Xcode 4.3.2(4.3.1) I added several files to a new cocoa touch static library project and use iPhone Simulator to build it, then ...
2
votes
1answer
242 views

Issue in running QR Code reader sdk

I am doing a project to read QR codes.For that I am using the sample code from 2D barcodes (QR Code, Data Matrix) - iOS4 or above only from the link http://www.quickmark.com.tw/En/basic/SDK.asp But ...
1
vote
4answers
3k views

i386 different from x86? [closed]

While downloading Fedora Linux, they offer two options for download that I don't know the difference to: x86 and i386. So what'sthe difference between them?
1
vote
2answers
2k views

Location Manager with iMac

I am using CLLocationManager. I got this compile error: Ld ...
1
vote
2answers
3k views

How do I build Universal binaries (ppc/i386) using Xcode 3.2.2 for OSX?

I am trying to build a universal binary for a project at work, but I can't seem to get Xcode set up properly to do so. I am familiar with the Apple Documentation regarding this, but apparently I am ...
1
vote
1answer
96 views

Implementing cat>fileName command in NASM

I try to implement cat>filename command in NASM in Ubuntu 11.04 using system calls. My program is compiled successfully and run successfully (seems so). But whenever I tried to fire cat filename ...
1
vote
4answers
1k views

libsqlite3.dylib, missing required architecture i386

I am using libsqlite3.dylib and am getting the following error when am compiling my project. ld: warning: ignoring file /Users/dcdmc/Documents/Beginning iPhone 5 Dev/Persistence ...
1
vote
1answer
426 views

Added Apple's code KeychainItemWrapper.h &.m files into my app and can not run with an error

I want save the username and password when user login, and I added the two Apple's file in my app, but there is an error and build failed, maybe something about i386 cause this failed. I using ...
1
vote
2answers
145 views

strlen in assembly, off by 1?

I wrote the following assembly function callable from C to count the length of a null-terminated string. But for some reason, the count is always off by +1. I can't figure out why. Any clue? ...
1
vote
1answer
1k views

Cross Compiling libogg for iOS

I've been trying to cross compile libogg for armv6, armv6 and i386 using the iOS 5.1 SDK in Mountain Lion. Libogg uses autoconf, and I've been having pretty similar issues with a few other libraries ...
1
vote
1answer
663 views

I have link error with OpenCV and XCode4.2

I'm trying to link OpenCV in my iPhone project. I upgraded project made on Xcode3.x for latest Xcode. So I need to link opencv built on Xcode 4.3. I followed the guide in ...
1
vote
1answer
188 views

iphone sqlite undefined symbol errors

I am trying to learn sqlite for the iphone and am using the tutorial at this link: http://www.techotopia.com/index.php/An_Example_SQLite_based_iPhone_Application I created a single view application ...
1
vote
0answers
38 views

i386 exe file that refuses dosbox, on x64 windows

I am trying to make a code run on my machine (windows 7 x64), it is a fortran 90 code that needs a third-party provided i386-based dll to work. When I tried compiling it (with latest gfortran and ...
1
vote
0answers
90 views

Building Lua for both i386 & x86_64 architecture?

I've been building some Lua scripts to automate certain functions and configurations that I can use with my audio VST plug-ins. The scripts themselves work fine, tested in a separate project embedded ...
1
vote
1answer
58 views

libstk.a undefined symbol for architecture x86_64 (or i386)

I try to use the library libstk.a (from The Synthesis ToolKit in C++ (STK))in a XCode 4.5.1 application project to build for Standard(32/64 bit Intel) architectures. I just drop the file libstk.a and ...
1
vote
0answers
101 views

Xcode: Library is not build for x86_64 valid architecture

Please help me with issue I break my neck with.. I work with Xcode 4.5.* and I try to build a library with Build Settings: Architectures: 32-bit Intel Valid Architectures: *i386 & x86_64* But ...
1
vote
1answer
56 views

Trying to combine two Xcode projects, error architecture i386

Im trying to combine two Xcode projects. I bought these two projects from the web and i want to create a new project with functions from both the projects i bought. The problem is that as soon as I ...
1
vote
1answer
295 views

RVM installing Ruby for i386 rather than x86_64 on OSX 10.8.2

I've installed Ruby/Gem/Rails on two different OSX 10.8.2 machines. One is working fine and the other appears to work until I attempt to install a gem that includes native code like pg. When I do ...
1
vote
1answer
494 views

iPhone Static Library Issues With Simulator

So I have an iPhone static library that I am trying to build. I've got the script that was used in this question ...
1
vote
1answer
134 views

NASM jmp wonkiness

I'm writing a Forth inner interpreter and getting stuck at what should be the simplest bit. Using NASM on Mac (macho) msg db "k thx bye",0xA ; string with carriage return len equ $ - msg ...

1 2