diff options
author | Abseil Team <absl-team@google.com> | 2021-03-02 00:46:03 (GMT) |
---|---|---|
committer | CJ Johnson <johnsoncj@google.com> | 2021-03-04 17:07:25 (GMT) |
commit | de41f8223c4aa8ff447dbc03b25e57b53dd75867 (patch) | |
tree | 7740f71930b08c17df10642dfa987162551b2a6d /docs | |
parent | e8b478a7356f21efbada1aae15b49b332cc54e3f (diff) | |
download | googletest-de41f8223c4aa8ff447dbc03b25e57b53dd75867.zip googletest-de41f8223c4aa8ff447dbc03b25e57b53dd75867.tar.gz googletest-de41f8223c4aa8ff447dbc03b25e57b53dd75867.tar.bz2 |
Googletest export
Add Supported Platforms page to docs
PiperOrigin-RevId: 360307129
Diffstat (limited to 'docs')
-rw-r--r-- | docs/_data/navigation.yml | 4 | ||||
-rw-r--r-- | docs/platforms.md | 35 |
2 files changed, 39 insertions, 0 deletions
diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 671ed90..b79f250 100644 --- a/docs/_data/navigation.yml +++ b/docs/_data/navigation.yml @@ -1,4 +1,8 @@ nav: +- section: "Get Started" + items: + - title: "Supported Platforms" + url: "/platforms.html" - section: "Guides" items: - title: "GoogleTest Primer" diff --git a/docs/platforms.md b/docs/platforms.md new file mode 100644 index 0000000..eba6ef8 --- /dev/null +++ b/docs/platforms.md @@ -0,0 +1,35 @@ +# Supported Platforms + +GoogleTest requires a codebase and compiler compliant with the C++11 standard or +newer. + +The GoogleTest code is officially supported on the following platforms. +Operating systems or tools not listed below are community-supported. For +community-supported platforms, patches that do not complicate the code may be +considered. + +If you notice any problems on your platform, please file an issue on the +[GoogleTest GitHub Issue Tracker](https://github.com/google/googletest/issues). +Pull requests containing fixes are welcome! + +### Operating systems + +* Linux +* macOS +* Windows + +### Compilers + +* gcc 5.0+ +* clang 5.0+ +* MSVC 2015+ + +**macOS users:** Xcode 9.3+ provides clang 5.0+. + +### Build systems + +* [Bazel](https://bazel.build/) +* [CMake](https://cmake.org/) + +Bazel is the build system used by the team internally and in tests. CMake is +supported on a best-effort basis and by the community. |