Monotouch - Ibtool does not exist in any folders referenced in the PATH environment variable

StackOverflow https://stackoverflow.com/questions/1657750

  •  11-09-2019
  •  | 
  •  

Question

I've just installed monotouch and having a problem with my first build of an unchanged IPhone template project. The build is not finding Ibtool in any of the folders in the PATH environment variable. I get the following message :

Build failed. ApplicationName='ibtool', CommandLine=....

If I do a search for Ibtool, it is in folder /Developer/usr/bin, which is not referenced in the PATH environment variable.

My UNIX is very rusty - I've tried changing the PATH variable to add this path in the terminal window, but this does not persist.

Help!

Was it helpful?

Solution

Have you recently upgraded to Snow Leopard without downloading the Snow Leopard version of Xcode? I've seen that the Snow Leopard upgrade might leave Xcode alone and this error will start showing up.

Additionally, make sure you install Xcode and MonoTouch on the Boot partition.

OTHER TIPS

In Snow Leopard & XCode 3.2.1, ibtool is located at /Developer/usr/bin/ibtool, which normally isn't in your search path. You can specify the full path to run ibtool, or if you're calling it from a shell script or makefile, do something like:

IBTOOL=/Developer/usr/bin/ibtool
${IBTOOL} --strings-file MainMenu.strings --write MainMenu.nib ../English.lproj/MainMenu.nib
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top