this repo has no description
1
fork

Configure Feed

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

Fixed search for libstdc++ dylib

+3 -1
+1 -1
etc/dylib.conf
··· 3 3 /usr/lib/libobjc.A.dylib=libobjc.A.dylib.so 4 4 libintl.8.dylib=libSystem.B.dylib.so 5 5 libiconv.2.dylib=libSystem.B.dylib.so 6 - libstdc++.6.dylib=libSystem.B.dylib.so 6 + /usr/lib/libstdc++.6.dylib=libSystem.B.dylib.so 7 7 #libncurses.5.4.dylib=libncurses.so.5 8 8 #/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation=libCoreFoundation.so 9 9 /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation=libgnustep-corebase.so
+2
src/dyld/ld.cpp
··· 266 266 for (int i = 0; i < sizeof(g_searchPath) / sizeof(g_searchPath[0]); i++) 267 267 { 268 268 path = std::string(g_searchPath[i]) + "/" + filename + ".so"; 269 + LOG << "Trying " << path << std::endl; 269 270 if (::access(path.c_str(), R_OK) == 0) 270 271 RET_IF( attemptDlopen(path.c_str(), flag) ); 271 272 } 272 273 for (int i = 0; i < sizeof(g_searchPath) / sizeof(g_searchPath[0]); i++) 273 274 { 274 275 path = std::string(g_searchPath[i]) + "/" + filename; 276 + LOG << "Trying " << path << std::endl; 275 277 if (::access(path.c_str(), R_OK) == 0) 276 278 RET_IF( attemptDlopen(path.c_str(), flag) ); 277 279 }