this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix build

+2 -2
+1 -1
src/dyld/dyld.cpp
··· 72 72 mgr->setBindAtLaunch(getenv("DYLD_BIND_AT_LAUNCH") != nullptr); 73 73 #endif 74 74 mgr->setIgnoreMissingSymbols(getenv("DYLD_IGN_MISSING_SYMS") != nullptr); 75 - mgr->setIgnoreMissingDependencies(getenv("DYLD_IGN_MISSING_DEPS") != nullptr); 75 + // mgr->setIgnoreMissingDependencies(getenv("DYLD_IGN_MISSING_DEPS") != nullptr); 76 76 mgr->setPrintSegments(getenv("DYLD_PRINT_SEGMENTS") != nullptr); 77 77 mgr->setPrintBindings(getenv("DYLD_PRINT_BINDINGS") != nullptr); 78 78 mgr->setPrintRpathExpansion(getenv("DYLD_PRINT_RPATHS") != nullptr);
+1 -1
src/libdyld/DylibSearch.cpp
··· 24 24 #include "MachOObject.h" 25 25 #include "MachOMgr.h" 26 26 #include "VirtualPrefix.h" 27 - #include "DummyObject.h" 27 + //#include "DummyObject.h" 28 28 #include <regex.h> 29 29 #include <unistd.h> 30 30 #include <util/stlutils.h>