2

In order to start learning Swift, I installed Xcode 6. I created a "Mobile App" Project and just built it. Without writing any code, I have the following build error :

"Command
/Volumes/Xcode/Xcode6-Beta4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ibtool
failed with exit code 255".

I searched a lot and did not find any solution to this problem... I don't know if it comes from the iPhone Emulator or from the linking with static or shared libraries. Does anyone got this issue ?

EDIT: Problem resolved. It was because I had special characters in my name (not in the id). So, I had to connect in iTunes and change "é" to "e".

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Greg Ballot
  • 203
  • 2
  • 8
  • Possibly a provisioning profile or certificate issue. – Andrew Jul 23 '14 at 15:28
  • This is it ! It came from special characters. – Greg Ballot Jul 23 '14 at 15:41
  • You should give the solution not as an edit but as an actual answer. Answering your own question is legal and useful on Stack Overflow. This is a very interesting situation and your problem and solution will help others. – matt Jul 23 '14 at 17:51

1 Answers1

1

The problem came from special characters ("é") in my name. I just needed to log in iTunes and change "é" to "e". Xcode's not helpful sometimes..

Greg Ballot
  • 203
  • 2
  • 8