Ld: Framework Not Found Stripe for Architecture X86_64

ld: framework not found Stripe for architecture x86_64

I had to do two things to get this working:

  1. Add "$(SRCROOT)/../.." (since Project B lives two folders deep inside Project A) to "Framework Search Paths" under Build Settings -> "Search Paths" for the Project B target.

  2. Add the Stripe SDK to Project B's frameworks as well. This second step in particular surprised me because Project B does not rely directly upon Stripe.

Adding Stripe Pod- linker error

Actually when I ran pod install, it didn't inherit my path in

 OTHER LINKER FLAGS

so it was a manual fix by adding

$(inherited)

Hope this helps someone if they encounter the same problem.

xcode freetype ld symbols not found for architecture x86_64

You need to provide those symbols in your code:

int z_verbose = 0;

void z_error(/* should be const */char* message)
{
log_somewhere_or_ignore(message);
}


Related Topics



Leave a reply



Submit