Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error during archive: symbols referenced by indirect symbol table entries that can't be stripped

Tags:

xcode

macos

ios

I have a project which compile and run fine (even when built using "build for archive" command).

However, when I want to Archive it (for MAS publishing), I get the following error:

Command /Developer/usr/bin/strip failed with exit code 1 /Developer/usr/bin/strip: symbols referenced by indirect symbol table entries that can't be stripped in xxx

where xxx is a subproject of my project (framework).

What can be the issue? (I checked, everything is properly signed)

like image 524
AP. Avatar asked Apr 17 '12 07:04

AP.


1 Answers

enter image description here

In my case, changing Strip Style build setting from All Symbols to Debugging Symbols fixed the problem.

like image 180
Alexander Doloz Avatar answered Sep 29 '22 23:09

Alexander Doloz