aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-07-11 09:42:48 -0400
committerGennadiy Civil <misterg@google.com>2018-07-11 09:42:48 -0400
commit36066cfecf79267bdf46ff82ca6c3b052f8f633c (patch)
treea2ab07fccb46a6eda3a23863316ae6902b68ec84 /googletest/docs
parent74cccf494a11bc5424a9b228cfdf7f6f1e21d30e (diff)
downloadgoogletest-36066cfecf79267bdf46ff82ca6c3b052f8f633c.tar.gz
googletest-36066cfecf79267bdf46ff82ca6c3b052f8f633c.tar.bz2
googletest-36066cfecf79267bdf46ff82ca6c3b052f8f633c.zip
more formatting [skip ci]
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/primer.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md
index cbc9405b..9949658a 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -560,23 +560,6 @@ gtest\_main library and you are good to go.
NOTE: `ParseGUnitFlags()` is deprecated in favor of `InitGoogleTest()`.
-## Creating and Building Test Programs
-
-Now that we've learned how to write a test program, we need to tell the build
-system to build it. The exact steps differ from one OS to another.
-
-If you work on Linux, follow the instructions [here](howto_cpp#LinuxTarget).
-
-If you work on the Mac, follow the instructions [here](howto_cpp_mac).
-
-If you work on Windows, consult existing test programs in your project, as the
-syntax for a test program build target may differ slightly from project to
-project. When compiling googletest and your tests, please do **not** use the
-`/Wp64` MSVC flag. It is broken and
-[deprecated](http://msdn.microsoft.com/en-us/library/yt4xw8fh.aspx) by
-Microsoft. We don't guarantee that googletest will compile warning-free with
-that flag (as it's often technically infeasible given the flag's broken nature).
-
## Known Limitations
* Google Test is designed to be thread-safe. The implementation is thread-safe