- Home /
Question by
ItzMrJohn2You · May 26, 2015 at 11:17 PM ·
iphonexcodexmlstripping
iPhone stripping errors?
To be honest I am completely new to stripping. I'm trying to strip app for xcode, but I keep getting this error:
clang: error: no such file or directory: '/Users/johnhoskins/Desktop/Roid/Roid Rage/Libraries/Mono.Security.dll.s'
clang: error: no input files
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1
If I understood how to figure out what shouldn't be stripped and how to code it, this would be better than just the answer for future problems. Does anyone know a good place for learning about stripping and how to narrow it down?
And as you can see I just have a basic link.xml file:
<?xml version="1.0" encoding="UTF-8" ?>
<linker>
<assembly fullname="mscorlib">
<namespace fullname="System.Security.Cryptography" preserve="all"/>
</assembly>
</linker>
Comment
I fixed that last error with:
</assembly>
<assembly fullname="System">
<namespace fullname="System.Security.Cryptography" preserve="all"/>
</assembly>
but now I get:
clang: error: no such file or directory: '/Users/johnhoskins/Desktop/Roid/Roid Rage/Libraries/UnityEngine.Cloud.Analytics.Util.dll.s'
So the namespace I'm having trouble with is apparently UnityEngine.Cloud.Analytics.Util.dll.
I have tried:
</assembly>
<assembly fullname="UnityEngine">
<namespace fullname="UnityEngine.Cloud.Analytics" preserve="all"/>
</assembly>
, but this hasn't work either. I know the problem is I don't understand how to write the xml for link.xml, when I know the namespace. Can anyone help me out?