Reputation: 113
I get an error for GD framework saying unable to spawn process '~/Library/Application Support/BlackBerry/Good.platform/iOS/FIPS_module/x86_64.sdk/bin/gd_fipsld' (No such file or directory)
Can you guess what could be wrong. Is the sdk not installed correctly or do i need to change any project settings in xcode.
thanks,
Upvotes: 1
Views: 155
Reputation: 113
The issue was solved by changing the xcode file system to Legacy build system from the default New build system. This is because the BB sdk cannot build yet with the New build system.
Upvotes: 0
Reputation: 31
In your xcconfig file can you update the path for ld to $(HOME)/Library/Application Support/BlackBerry/Good.platform/iOS/FIPS_module/$FIPS_PACKAGE/bin/gd_fipsld
notice the change from ~ to $(HOME), you might have to do that for ldplusplus
Upvotes: 1