-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
correcting version of glog expected by folly #648
Comments
|
@Orvid is there any chance you could give this a look, it seems you're involved in some of the cmake code. |
I'm not actually very familiar with the homebrew setup :( |
@Orvid Sorry for the confusing post, I think the main question is related to folly and glog, no homebrew required. Essentially, can folly be updated to find a glog installation when it has been built and installed via cmake? I believe the library name folly looks for doesn't work right when it is a cmake based install of glog, and the reason for that is the autoconf build of glog does not version the library. In other words, folly needs to correctly find glog when there is, for example, a file named |
If glog was built with cmake, could folly detect it from the cmake configuration first, instead of a find-script? This would probably be a lot more robust. |
I'm trying to coordinate the correction of an inconsistency between three tools, folly, glog, and homebrew, so please bear with me.
folly appears to expect a dynamic library for glog named:
However, this does not appear to be the correct filename for various versions and methods of installing of glog, depending on how it was compiled. This inconsistency between glog and folly causes the homebrew install of folly to fail. I'd like to resolve this inconsistency so all the utilities work together correctly. Thanks for your consideration! :-)
Equivalent issues on the other projects:
google/glog#196
Homebrew/homebrew-core#14379
The text was updated successfully, but these errors were encountered: