1

I try to compile but it fails because it find a duplicated definition of class in one of the dependencies and in the main dependency. I googled a lot and i even found the cause of this, due to a bug in xcode and the optimization for amr6 and arm7 code. But i could't found how to solve this. Has anybody use the three20 library with iOS4 ?

artless noise
  • 21,212
  • 6
  • 68
  • 105
  • I had this bug with other dependent projects. The only way I made it work was to start a new project in xcode and move everything to it. – vikingosegundo Jul 19 '10 at 20:17
  • See if the answer to my question is of any assistance: http://stackoverflow.com/questions/3206999/static-library-dependency-compiles-in-simulator-on-xcode-3-2-3-fails-on-device – prairiedogg Jul 20 '10 at 12:25

1 Answers1

0

Make sure that all dependency projects are set to use the base sdk, then it should compile ok.

Andre
  • 1