Since upgrading to Lion yesterday (10.6->10.7), I've been unable to compile a project that had no problems compiling prior to the upgrade.

It's not even a recent change to the project that's causing this error: If I checkout from SVN a version of the project from a few days or a week ago, I get the same error whilst building:

"Command /Developer/usr/bin/momc failed with exit code 6", which expands to the following:

Build Error:

DataModelVersionCompile /Users/ian/Library/Developer/Xcode/DerivedData/inventory-gtvznzuhomhlakbdpocaqwnrihhx/Build/Products/Debug-iphonesimulator/inventory.app/inventory.momd inventory/inventory.xcdatamodeld
cd /Users/ian/AppsDev/uk.co.isurvey-inventory/ios/inventory/trunk/inventory
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/usr/bin/momc -XD_MOMC_SDKROOT=/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk -XD_MOMC_IOS_TARGET_VERSION=4.3 -MOMC_PLATFORMS iphonesimulator -MOMC_PLATFORMS iphoneos -XD_MOMC_TARGET_VERSION=10.6 /Users/ian/AppsDev/uk.co.isurvey-inventory/ios/inventory/trunk/inventory/inventory/inventory.xcdatamodeld /Users/ian/Library/Developer/Xcode/DerivedData/inventory-gtvznzuhomhlakbdpocaqwnrihhx/Build/Products/Debug-iphonesimulator/inventory.app/inventory.momd

2011-07-21 19:24:44.954 momc[4436:a0b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSXMLDocument initWithData:options:error:]: nil argument'
*** First throw call stack:
(
0   CoreFoundation                      0x00007fff8e411986 __exceptionPreprocess + 198
1   libobjc.A.dylib                     0x00007fff8d0d5d5e objc_exception_throw + 43
2   CoreFoundation                      0x00007fff8e4117ba +[NSException raise:format:arguments:] + 106
3   CoreFoundation                      0x00007fff8e411744 +[NSException raise:format:] + 116
4   Foundation                          0x00007fff8c761310 -[NSXMLDocument initWithData:options:error:] + 89
5   momc                                0x0000000102f04a2c momc + 10796
6   momc                                0x0000000102f04fe8 momc + 12264
7   momc                                0x0000000102f058f0 momc + 14576
8   momc                                0x0000000102f03d20 momc + 7456
9   ???                                 0x000000000000000a 0x0 + 10
)
terminate called throwing an exception
Command /Developer/usr/bin/momc failed with exit code 6

Further explanation:

AFAIK, the only difference is that I'm using Lion now, and the Lion version of Xcode 4.1 (where I was using Xcode 4.1 for Snow Leopard prior to this).

I've deleted /Developer/ , I've reinstalled several times, and re-downloaded the App Store Xcode installer too, in case it was corrupt.

If I create a new project using Xcode (and use Core Data, I think that's related to whatever problem there is building my project), it builds and runs fine: maybe there's something I need to do to fix my real project?

Any suggestions would be brilliant! Cheers, Ian

link|improve this question

40% accept rate
1  
OK, I managed to fix it: I had to delete some .xcdatamodel files from the .xcdatamodeld file that weren't being used and should have been deleted ages ago. Don't know why they were still there, or why they caused a problem, or even how I got around to trying that as a solution. But, it's working now, and that's definitely the only solution that worked. – Innus Jul 22 '11 at 12:31
I'm having the same problem. I have several versions of my data model and one custom update model. Luckily, the is all pre-release code and I can toss those out. If anyone's working with production code that needs to manage model updates - BEWARE. – bshirley Jul 26 '11 at 17:19
The '*** -[NSXMLDocument initWithData:options:error:]: nil argument' is the part that has be wondering. The data argument is the only one that can't be nil, so i'm wondering which file is giving it a nil NSData? – bshirley Jul 26 '11 at 17:21
further inspection showed i also had a long lost version hidden in the xcdatamodeld file that was not listed in Xcode - removing that fixed my problem - - - i reported the bug to apple – bshirley Jul 26 '11 at 18:53
feedback

1 Answer

I've had the same issue, OSX Lion 10.7.1, XCode 4.1.

Yes, the problem solves simply by removing all *.xcdatamodel directories that are not displayed in XCode from your *.xcdatamodelid directory. These directories appear after *.xcdatamodel renaming in XCode.

Removing is done simply in Terminal or by Show package contents menu in Finder.

link|improve this answer
Sorry, "where" are the *.xcdatamodelid files and/or directories? Very confused. – Fulvio Sep 28 '11 at 3:44
It depends on where you did save your core data model file. Usually *.xcdatamodelid is in your project directory. If it is not there then I recommend you just to search it. If you explore it through Finder, it looks like a file, not a directory. To see this file's contents select Show package contents from the context menu. – Misha Karpenko Sep 28 '11 at 9:32
Thanks. Found it, deleted it and now it all works fine. – Fulvio Sep 28 '11 at 9:49
feedback

Your Answer

 
or
required, but never shown

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