What steps will reproduce the problem? 1. Imported fmdb into my project running on a G5 Quad PPC 2. Build
What is the expected output? What do you see instead? should just build but I get an error on
ifdef BIG_ENDIAN
asm{ trap };
endif
I remove it and it all compiles ok
What version of the product are you using? On what operating system? Mac 10.5.6
Please provide any additional information below. When I remove these three lines it builds fine. Why was this added ?
Comment #1
Posted on May 5, 2009 by Massive WombatWhat version of Xcode are you using?
The call is there to break into the debugger.
Comment #2
Posted on May 6, 2009 by Helpful KangarooI am running xcode 3.1.2 on a powermac G5 Quad, I cannot get FMDB to work at all. I have tried downloading example projects that us FMDB and they work fine on my macbook pro which is running Xcode 3.1.2 but I get the above error when using the G5 Quad
Comment #3
Posted on May 10, 2009 by Quick WombatI'm guessing you're building for iPhone on a PowerPC?
If so, the fix is to change:
ifdef BIG_ENDIAN
to
if defined(BIG_ENDIAN) && !TARGET_IPHONE_SIMULATOR
Comment #4
Posted on May 10, 2009 by Massive PandaThanks for the fix- I've got it added.
Comment #5
Posted on May 10, 2009 by Helpful KangarooThats Correct. When I use the GroceryGetter FMDB App it now builds ok but when In the simulator the addition of of records does not work.
Status: Fixed
Labels:
Type-Defect
Priority-Medium