Tagged Questions
i386 is the mark used on the Intel 80386 processor
7
votes
2answers
811 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 ...
4
votes
6answers
179 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
2answers
318 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
...
3
votes
1answer
120 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 ...
3
votes
1answer
106 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 ...
3
votes
2answers
257 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 ...
3
votes
1answer
174 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 ...
2
votes
1answer
114 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
3answers
327 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 ...
2
votes
2answers
1k 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
295 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
166 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
414 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
2answers
293 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 ...
1
vote
1answer
33 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 ...
1
vote
1answer
35 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 ...
1
vote
1answer
507 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 ...
1
vote
1answer
6k views
Undefined symbols 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 think) by executing the simulator, Xcode 4 show me 25 issues:
Ld ...
1
vote
1answer
2k 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 ...
1
vote
1answer
171 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 ...
1
vote
2answers
848 views
ld: warning: ignoring file /Users/Marius/Documents/AppSchool/Telefonbok/AddressBook.framework/AddressBook, 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 ...
1
vote
2answers
2k 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 ...
0
votes
0answers
23 views
Undefined symbols for architecture i386 using Layar Player
I'm trying to make an app that uses Layar Player.I'm getting this error, any idea why?
ld: warning: ignoring file /Users/dolsiriritthigul/Desktop/Project ...
0
votes
1answer
63 views
Undefined symbols for architecture i386 using protobuf
I'm trying to make an app that uses Protocol Buffers. I'm getting this error, any idea why?
Ld ...
0
votes
1answer
66 views
Understanding assembly recursive function
I am learning assembly and I have this function that contains some lines I just don't understand:
. globl
. text
factR:
cmpl $0 ,4(% esp )
jne cont
movl $1 ,%eax
ret
cont :
movl 4(%esp),%eax
...
0
votes
0answers
89 views
Failure with booting of qemu_x86_defconfig in buildroot-2011.11?
I have built the qemu_x86_defconfig with buildroot-2011.11, the
qemu-system-i386 version is 1.0.50 and I use the external cross toolchain of Sourcery CodeBench
x86/x86_64 2010.09, but I encountered ...
0
votes
0answers
45 views
import Google GData objective c library for iphone - ld: symbol(s) not found for architecture i386
Error Message:
Ld /Users/Admin/Library/Developer/Xcode/DerivedData/OneCal-dxemlfjefxrnkidbkkhyvpzjkevo/Build/Products/Debug-iphonesimulator/onecal.app/onecal normal i386
cd ...
0
votes
1answer
78 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 ...
0
votes
0answers
92 views
Xcode i386 linker error
I keep getting an error message that I cannot seem to find an answer to. What comes up is:
Ld ...
0
votes
2answers
53 views
Portable source code between 386 and amd64?
Goal: have a single assembler source file which will assemble both to x86 (i386) and to x86_64 (amd64)?
Is this possible, for instance with YASM?
0
votes
2answers
234 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 ...
0
votes
1answer
192 views
symbol(s) not found for architecture i386 about opencv
I am studying opencv for ios now.After I download example codes from github.com/macmade, i complie and run the program, everything is OK. However, when i add some opencv codes as bellow:
IplImage* ...
0
votes
2answers
101 views
ruby Rake Time BUG in Ruby,what To do now on windows 7:
ERROR:
C:\ruby_shuby\exchange>rake db:create:all
rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+)
...
0
votes
3answers
78 views
Loading a dylib from a different architecture
I currently have a program I have compiled in x86_64, it relies on quite a few libraries also compiled in x86_64 (so recompiling them all would be a big project). I am looking to run a i386 dylib, ...
0
votes
1answer
333 views
Compilation Error: Undefined symbols for architecture i386
I am working on a an application to stream live video on iPhone from IP cameras through rtsp. I am using open source projects like live555, DecoderWrapper and RTSPClient. I get the following error ...
0
votes
1answer
525 views
0
votes
3answers
444 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 ...
0
votes
0answers
386 views
Error while including a static library on xcode 4
I have build a static library on xcode 4 for architectures arm6 and arm7. When I try to copy the static library to another project(which is also on arm6/arm7), it gives me the following error:
ld: ...
0
votes
0answers
1k views
How can I resolve this warning “gcc file format : is not the architecture being linked (i386)”?
I have to continue the development of an iPhone appli but when I want to build it, my build results display this warming, and I don't know how can I resolve it :
ld: warning: in ...
0
votes
1answer
2k views
How do I use Sqlite in a dylib in an i386 app in XCode 4? This approach does work in iPhone app
Using Sqlite in a dylib in an i386 app in XCode 4
For iOS I needed to add a file namely libsqlite3.0.dylib from directory:
/Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1 ...
0
votes
2answers
113 views
Emulating a 386
I'm applying for a contest that challenges people to write a program for a classical computer. I will apply with a PC/MS-DOS entry. The rules permit using a CPU up to a 386.
I'm been investigating a ...
0
votes
2answers
244 views
Creating plain binary data (no ELF, symbol table etc) using an assembler
I want to turn a data-only input file, i.e. something like this:
.data
.org 0
.equ foo, 42
.asciz "foo"
label:
.long 0xffffffff
.long 0x12345678
.byte foo
.long label
.long bar
.equ bar, ...
0
votes
1answer
495 views
How to compile gcc44 in i386 mode in macports?
I am trying to make command "sudo port install py25-gtk" work. The problem is that (at least) one of the dependencies (gcc44) is not compiling.
I have figured out that it always tries to compile in ...
0
votes
2answers
260 views
Scheme - Compilers - Backend to Frontend - Ghuloum
Do online solutions to Ghuloum's "Compilers - Backend to Frontend" exist? If so where?
(I am aware he has summarised but not answered it in this paper.)
(I'm also aware he has written Ikarus Scheme ...
0
votes
3answers
246 views
Xcode Only Gives Me Desktop Architectures for iOS App
I have an iOS project that I've put in Dropbox to work with a few friends. The issue is that it seems to get "corrupted", so that after some time (after someone else has accessed the Xcode project ...
0
votes
2answers
115 views
Extend the witdh of base address in 386 segment selector to excess the 4GB RAM limit in 32-bit OS?
As the memory requirement grows fast, today more and more system requires 64-bit machines to access even larger RAM.
FWIK in 386 protected mode, a memory pointer consists of two part: the base ...
-1
votes
4answers
354 views