On Nov 23, 2009, at 12:32 AM, Michael Davey wrote:
> As an aside I have the 64bit PPC version as well - does anyone know if this
> is needed?
Only if you're planning on making a PPC64 version of your app. Otherwise, it's
a waste of space. The PPC64 architecture never did get a whole lot of lov
Glad you found your solution... This is out of my league. Quite interesting
though, so I will creep this exchange.
Peace
On Mon, Nov 23, 2009 at 1:32 AM, Michael Davey wrote:
> Well, it may not have been the most elegant of solutions, but it works...
>
> Basically I downloaded the binary tarbal
Well, it may not have been the most elegant of solutions, but it works...
Basically I downloaded the binary tarballs for each of the relevant
architectures from the mySQL download page, and then used lipo to stitch the
client libraries into the universal binary that I needed. As an aside I have
I guess you found the answer as I was typing my correction. Do you have the
source to dylib you are using?
On Sun, Nov 22, 2009 at 11:54 PM, Karolis Ramanauskas wrote:
> I made a little mistake. It's not a debug/release issue, although that
> would give you similar problems. The dylib you have wa
I made a little mistake. It's not a debug/release issue, although that would
give you similar problems. The dylib you have was compiled under different
configuration! Is your project 64 bit or 32 bit? Try changing that.
On Sun, Nov 22, 2009 at 11:52 PM, Michael Davey wrote:
> The dylib is the on
The dylib is the one that comes from the OS X build of mySQL - I did not build
it myself :o(
On 23 Nov 2009, at 16:50, Karolis Ramanauskas wrote:
> I think your dylib file has been compiled under debug only. When you compile
> your app under release, the compiler complains that dylib is compile
On 23 Nov 2009, at 16:19, Michael Davey wrote:
> I am using the mysql c library in my application, and have wrapped the C
> calls in an objective-C class (source available if needed).
>
> I have added the linking references as per instructions I have found on the
> web and when I run my applic
I think your dylib file has been compiled under debug only. When you compile
your app under release, the compiler complains that dylib is compiled under
debug. Recompile your dylib under release then compile your app under
release. Better yet you should add you dylib project (drag and drop) to your
I am using the mysql c library in my application, and have wrapped the C calls
in an objective-C class (source available if needed).
I have added the linking references as per instructions I have found on the web
and when I run my application in debug mode everything works just fine,
however, w