DyldCacheLoader option to control DYLIB section creation is now on be

default.
This commit is contained in:
Ryan Kurtz 2019-10-04 07:56:15 -04:00
parent ea953ce924
commit a22ee1febd

View file

@ -47,7 +47,7 @@ public class DyldCacheLoader extends AbstractLibrarySupportLoader {
static final String CREATE_DYLIB_SECTIONS_OPTION_NAME = "Create DYLIB section memory blocks"; static final String CREATE_DYLIB_SECTIONS_OPTION_NAME = "Create DYLIB section memory blocks";
/** Default value for loader option to create memory blocks for DYLIB sections */ /** Default value for loader option to create memory blocks for DYLIB sections */
static final boolean CREATE_DYLIB_SECTIONS_OPTION_DEFAULT = false; static final boolean CREATE_DYLIB_SECTIONS_OPTION_DEFAULT = true;
@Override @Override
public Collection<LoadSpec> findSupportedLoadSpecs(ByteProvider provider) throws IOException { public Collection<LoadSpec> findSupportedLoadSpecs(ByteProvider provider) throws IOException {