cocos2d-x 3.6 and xcode 7 beta

Hi,

anybody luck building xcode 3.6 project with xcode 7 beta?
At the moment I receive a linker error regarding libsqlite3.

Any help appreciated.

I am not sure how you got the source for Xcode 3.6. Do you work at Apple?

:smile:

I have yet to try. I have El Capitan and Xcode 7 on my spare laptop, perhaps I can find some time to try this.

:wink:
cocos2d-x 3.6 and xcode 7 beta of course.
Yeah, that would be nice.

Does anybody know what is referencing the libsqlite3 from cocos2d-x project?
The Xcode 7 beta app does not contain these libraries anymore.

it’s in the cocos2d_libs Xcode project, Mac target (possibly iOS as well?). I’m not sure if you can delete it safely, but it should fix that error if you remove it. I tried to add/reference the new .tbd version, but that didn’t compile.

We still have an issue with prefix headers.

To solve the xcode 7 compiling errors do the following:

  • search for pch in build settings for your targets and remove them.

The second beta fixed the prefix header issues.
Remove sqlite3.dylib and add “other linker flags” -lsqlite3
https://forums.developer.apple.com/message/13358 .

1 Like