Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone help me? I can't fix this error when building an ios app with aws sdk.

Undefined symbols for architecture i386:
  "_OBJC_METACLASS_$_GHTestCase", referenced from:
      _OBJC_METACLASS_$_STSTests in AWSiOSSDK(STSTests.o)
  "_OBJC_CLASS_$_GHTestCase", referenced from:
      _OBJC_CLASS_$_STSTests in AWSiOSSDK(STSTests.o)
  "_GHComposeString", referenced from:
      -[STSTests testGetSessionToken] in AWSiOSSDK(STSTests.o)
      -[STSTests testGetFederatedSessionToken] in AWSiOSSDK(STSTests.o)
share|improve this question
is the aws library linked in your application? – Jer In Chicago Feb 23 '12 at 3:42
Yes. I actually just updated the library to the latest version then it doesn't work now. – capecrawler Feb 23 '12 at 4:05
Hmmm, are you saying that it all worked before updating the library? – Jer In Chicago Feb 23 '12 at 4:13
1  
Maybe a problem with GHUnitIOS.Framework? Anyway, I'll quit guessing, but just looks like linker probs - doesn't now what GHTestCase is... – Jer In Chicago Feb 23 '12 at 4:29
Yup. I downloaded the latest sdk and followed the instructions on 'Including the AWS SDK for iOS in Existing Applications' in the docs.amazonwebservices.com/mobile/sdkforios/gsg/… – capecrawler Feb 23 '12 at 5:38
show 1 more comment

1 Answer

up vote 1 down vote accepted

Add and link with the GHUnitIOS.Framework.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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