| OLD | NEW |
| 1 # Breakpad | 1 # Breakpad |
| 2 | 2 |
| 3 Breakpad is a set of client and server components which implement a | 3 Breakpad is a set of client and server components which implement a |
| 4 crash-reporting system. | 4 crash-reporting system. |
| 5 | 5 |
| 6 * [Homepage](https://chromium.googlesource.com/breakpad/breakpad/) | 6 * [Homepage](https://chromium.googlesource.com/breakpad/breakpad/) |
| 7 * [Documentation](https://chromium.googlesource.com/breakpad/breakpad/+/master/d
ocs/) | 7 * [Documentation](https://chromium.googlesource.com/breakpad/breakpad/+/master/d
ocs/) |
| 8 * [Bugs](https://bugs.chromium.org/p/google-breakpad/) | 8 * [Bugs](https://bugs.chromium.org/p/google-breakpad/) |
| 9 * Discussion/Questions: [google-breakpad-discuss@googlegroups.com](https://group
s.google.com/d/forum/google-breakpad-discuss) | 9 * Discussion/Questions: [google-breakpad-discuss@googlegroups.com](https://group
s.google.com/d/forum/google-breakpad-discuss) |
| 10 * Developer/Reviews: [google-breakpad-dev@googlegroups.com](https://groups.googl
e.com/d/forum/google-breakpad-dev) | 10 * Developer/Reviews: [google-breakpad-dev@googlegroups.com](https://groups.googl
e.com/d/forum/google-breakpad-dev) |
| 11 * Tests: [](https://travis-ci.org/google/breakpad) |
| 11 | 12 |
| 12 ## Getting started in 32-bit mode (from trunk) | 13 ## Getting started in 32-bit mode (from trunk) |
| 13 | 14 |
| 14 ```sh | 15 ```sh |
| 15 # Configure | 16 # Configure |
| 16 CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ./configure | 17 CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ./configure |
| 17 # Build | 18 # Build |
| 18 make | 19 make |
| 19 # Test | 20 # Test |
| 20 make check | 21 make check |
| (...skipping 19 matching lines...) Expand all Loading... |
| 40 For linux/mac/windows, there are test targets in each project file. | 41 For linux/mac/windows, there are test targets in each project file. |
| 41 | 42 |
| 42 5. Commit your changes to your local repo and upload them to the server. | 43 5. Commit your changes to your local repo and upload them to the server. |
| 43 http://dev.chromium.org/developers/contributing-code | 44 http://dev.chromium.org/developers/contributing-code |
| 44 e.g. `git commit ... && git cl upload ...` | 45 e.g. `git commit ... && git cl upload ...` |
| 45 You will be prompted for credential and a description. | 46 You will be prompted for credential and a description. |
| 46 | 47 |
| 47 6. At https://codereview.chromium.org/ you'll find your issue listed; click on | 48 6. At https://codereview.chromium.org/ you'll find your issue listed; click on |
| 48 it, and select Publish+Mail, and enter in the code reviewer and CC | 49 it, and select Publish+Mail, and enter in the code reviewer and CC |
| 49 google-breakpad-dev@googlegroups.com | 50 google-breakpad-dev@googlegroups.com |
| OLD | NEW |