problem with xcode

giacomopoppigiacomopoppi Member, PRO Posts: 914
edited November -1 in Working with GS (Mac)
ive been working for hours and hours on a problem i have with xcode:
when i try to build it (with device 3.0/debug) i get:
"___save_vfp_d8_d15_regs", referenced from:

"___switch8", referenced from:

"___switch16", referenced from:

"___switch32", referenced from:

"___restore_vfp_d8_d15_regs", referenced from:

"___switchu8", referenced from:

and when i try to release or distribute i get:

Command /usr/bin/codesign failed with exit code 1

any help is accepted
ive installed provisioning files correctly and everything.

Comments

  • eric_summerseric_summers Member Posts: 26
    Change project from debug to release and it will work. You might also need to edit the *info.plist file to correspond to your provisioning profile.
  • eric_summerseric_summers Member Posts: 26
    Specifically:

    * You need to add the "com.mycompany" part to "Bundle Identifier" in the *info.plist:
    com.mycompany.${PRODUCT_NAME:rfc1034identifier}

    * Make sure you have both certificates installed from apples developer site. The certificates need to be in the login keychain (not the system keychain).

    * Make sure you are set to "release" mode.

    * Make sure the provisioning profile is installed on your phone (in organizer section of xcode).

    * Make sure to select to provisioning file for the game under "Project" -> "Edit Project Settings" -> "Code Signing Identity"
  • eric_summerseric_summers Member Posts: 26
    BTW, the com.mycompany part comes from your provisioning profile. It needs to match.
  • eric_summerseric_summers Member Posts: 26
    You might also want to try with 3.1.2 version of the SDK. That is the only version I tried with.
Sign In or Register to comment.