I have an Xcode 4 project that uses the Google Analytics SDK. The SDK includes two libraries with the standard .a extension. Xcode 4's built in SVN system is set to automatically ignore .a files which is a problem for me (I need them in the repository and can't ask everyone that uses the repository to install the files manually).

So can you prevent Xcode from ignoring .a files? (I've tried right clicking the file -> Source Control -> Undo Ignore but absolutely nothing happens as a result).

link|improve this question

Does anyone know why Xcode is set up to ignore .a files? – jowie Apr 25 at 15:00
1  
My guess is that the folks at Apple (sensibly) thought that the system should by default ignore types of files that can be considered output files (e.g. .app, .o, etc.) The problem is that it's extremely common to use .a files in your project and relatively rare to have your project produce them so making an exception for .a files would have been appreciated. – Mattia Apr 25 at 19:22
feedback

1 Answer

up vote 5 down vote accepted

It depends on how XCode is currently ignoring the file. Generally I find that it is ignoring it by choice, e.g. it has never even added it to version control and will not give you the option to add it. In which case you can open up a Terminal, navigate to your projects directory and execute something like:

svn add pathto/file/name

e.g.

svn add Project/AddedLibraries/libsdl.a

XCode should then happily version control this, if you switch back to XCode and look it should be flagged with an 'A' to add.

If XCode is really ignoring the file, e.g. it was in version control but changes are no longer commited, then you need to:

svn propdel svn:ignore pathto/file/name

This will simply return an error if the property is not set. You could also execute:

svn propdel svn:ignore -R

to remove the ignore flag lock stock.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.