You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was/is the famous problem where the hadoop adaptor can't link to xrootd libraries compiled with a different C++ API.
Newer versions of the xrootd libraries have a form of Open() that accepts a char * instead of an std::string - xrootd/xrootd#1010 .. If this is added with some sort of runtime checking (e.g. use char* if it exists, fall back to std::string otherwise), it'll be possible to have a library usable anywhere
The text was updated successfully, but these errors were encountered:
PerilousApricot
changed the title
Use (char *) version of open, if available
Use (char *) version of URL, if available
Oct 9, 2019
There was/is the famous problem where the hadoop adaptor can't link to xrootd libraries compiled with a different C++ API.
Newer versions of the xrootd libraries have a form of Open() that accepts a
char *
instead of anstd::string
- xrootd/xrootd#1010 .. If this is added with some sort of runtime checking (e.g. use char* if it exists, fall back to std::string otherwise), it'll be possible to have a library usable anywhereThe text was updated successfully, but these errors were encountered: