search for: findfile

Displaying 3 results from an estimated 3 matches for "findfile".

2005 Sep 29
1
adding to: winlogon problem error with Default User/ "... does not
whoops, i didn't have much luck attaching the entire file, hopefully this link will work. http://www.lebox.org/u/milan/samba/userenv-clip.txt here's a piece of the log that looks interesting, any hints? USERENV(a0.80) 15:42:18:872 MyGetDomainDNSName: MyGetUserName failed for dns domain name with 1355 USERENV(a0.80) 15:42:18:872 CheckUserInMachineForest: MyGetDomainName failed with 1355.
2016 Dec 19
2
[lld] RFC: Finding shared libraries on OpenBSD
...F/DriverUtils.cpp (revision 290066) +++ ELF/DriverUtils.cpp (working copy) @@ -153,9 +153,34 @@ return findFromSearchPaths(Name.substr(1)); for (StringRef Dir : Config->SearchPaths) { - if (!Config->Static) + if (!Config->Static) { if (Optional<std::string> S = findFile(Dir, "lib" + Name + ".so")) return S; + + const StringRef LibName = (Twine("lib") + Name + ".so.").str(); + int MaxMaj = -1, MaxMin = -1; + std::error_code EC; + for (fs::directory_iterator LI(Dir, EC), LE; + !EC && LI...
2016 Dec 20
0
[lld] RFC: Finding shared libraries on OpenBSD
...t; +++ ELF/DriverUtils.cpp (working copy) > @@ -153,9 +153,34 @@ > return findFromSearchPaths(Name.substr(1)); > > for (StringRef Dir : Config->SearchPaths) { > - if (!Config->Static) > + if (!Config->Static) { > if (Optional<std::string> S = findFile(Dir, "lib" + Name + ".so")) > return S; > + > + const StringRef LibName = (Twine("lib") + Name + ".so.").str(); > + int MaxMaj = -1, MaxMin = -1; > + std::error_code EC; > + for (fs::directory_iterator LI(Dir, EC...