Compression part for Mach dylib i386.

This commit is contained in:
John Reiser
2009-05-13 10:40:21 -07:00
parent 9694ff433f
commit 3a9e0b5be6
6 changed files with 355 additions and 24 deletions
+2
View File
@@ -279,6 +279,8 @@ Packer* PackMaster::visitAllPackers(visit_func_t func, InputFile *f, const optio
return p;
if ((p = func(new PackMachARMEL(f), user)) != NULL)
return p;
if ((p = func(new PackDylibI386(f), user)) != NULL)
return p;
return NULL;
}