Loading...
--- dyld/dyld-733.6/dyld3/MachOFile.cpp
+++ dyld/dyld-750.5/dyld3/MachOFile.cpp
@@ -429,6 +429,12 @@
if ( this->cputype == CPU_TYPE_I386 )
return true;
}
+
+#if BUILDING_DYLDINFO
+ // Allow offline tools to analyze binaries dyld doesn't load, ie, those with platforms
+ if ( !foundOtherPlatform && (reqPlatform == Platform::unknown) )
+ return true;
+#endif
return false;
}