Greg Miller

Results 69 comments of Greg Miller

Also, don't use 'default', use `main`, which seems to be the new "default" :-)

Looks like the default language version is not what I'd expect it to be: ``` $ cat test.cc #include int main() { std::cout

Note setting `-DCMAKE_CXX_STANDARD=11` on the cmake configure line seems to work.

This may be working as intended. I'm not sure. I don't understand the output of https://github.com/abseil/abseil-cpp/issues/955#issuecomment-831599980. And it would be nice if Abseil Just Worked w/ the naive `cmake` invocation...

I think you're probably right about relying on the default. I think a reasonable solution may be to just document how to build and install this on macos. The doc...

I just found https://abseil.io/docs/cpp/guides/options, which suggests that users are supposed to patch the `absl/base/options.h` file to set the options they want for the their project. From the guide > Setting...

Thanks for the detailed and thoughtful reply, @derekmauro. As a library maintainer for many years myself, I'm completely on board with Abseil's principles. I certainly wouldn't want or expect Abseil...

Ultimately we want to hide everything in `//google/...`. We want to expose _only_ the top-level `//:library` targets

Then to > An observation: if we want to hide some targets (e.g. //google/cloud/spanner:spanner_client_testing) we may want to mark them as deprecated ahead of time. I guess I'd say "yes"....