PackDylibAMD64 (Mac OS X shared library on x86_64)

This commit is contained in:
John Reiser
2010-03-09 19:02:25 -08:00
parent 77377195aa
commit f550111400
6 changed files with 1049 additions and 12 deletions
+2
View File
@@ -285,6 +285,8 @@ Packer* PackMaster::visitAllPackers(visit_func_t func, InputFile *f, const optio
return p;
if ((p = func(new PackDylibPPC32(f), user)) != NULL)
return p;
if ((p = func(new PackDylibAMD64(f), user)) != NULL)
return p;
return NULL;
}