Index: README.md |
diff --git a/README.md b/README.md |
index 93daa4cf5101ee35e31df74e7b41dc4e97348812..a28503ef84321397e0a4b4e0895996774873cf72 100644 |
--- a/README.md |
+++ b/README.md |
@@ -10,41 +10,58 @@ crash-reporting system. |
* Developer/Reviews: [google-breakpad-dev@googlegroups.com](https://groups.google.com/d/forum/google-breakpad-dev) |
* Tests: [](https://travis-ci.org/google/breakpad) |
-## Getting started in 32-bit mode (from trunk) |
- |
-```sh |
-# Configure |
-CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ./configure |
-# Build |
-make |
-# Test |
-make check |
-# Install |
-make install |
-``` |
+## Getting started (from trunk) |
vapier
2016/06/03 14:58:35
s/trunk/master/ ?
Ted Mielczarek
2016/06/03 16:40:40
Done.
|
-If you need to reconfigure your build be sure to run `make distclean` first. |
- |
-## To request change review: |
+1. First, [download depot_tools](http://dev.chromium.org/developers/how-tos/install-depot-tools) and ensure that they're in your `PATH`. |
+2. Create a new directory for checking out the source code (it must be named breakpad): |
vapier
2016/06/03 14:58:35
i'd prefer to use a period at the end of each of t
Ted Mielczarek
2016/06/03 16:40:40
Done.
|
-1. Get a copy of depot_tools repo. |
- http://dev.chromium.org/developers/how-tos/install-depot-tools |
- |
-2. Create a new directory for checking out the source code. |
+ ```sh |
mkdir breakpad && cd breakpad |
+ ``` |
3. Run the `fetch` tool from depot_tools to download all the source repos. |
- `fetch breakpad` |
-4. Make changes. Build and test your changes. |
+ ```sh |
+ fetch breakpad |
+ ``` |
+4. Build the source: |
vapier
2016/06/03 14:58:35
looks like you want a blank line above this (based
Ted Mielczarek
2016/06/03 16:40:40
Done.
|
+ |
+ ```sh |
+ ./configure && make |
+ ``` |
+ |
+ You can also cd to another directory and run configure from there to build outside the source tree. |
+ |
+ This will build the processor tools on all platforms (`src/processor/minidump_stackwalk`, `src/processor/minidump_dump`, etc), and on Linux it will also build the client libraries and some tools (`src/tools/linux/dump_syms/dump_syms`, `src/tools/linux/md2core/minidump-2-core`, etc). |
vapier
2016/06/03 14:58:35
line wrap to 80 cols ?
the "on all platforms" is
Ted Mielczarek
2016/06/03 16:40:40
Done.
|
+5. Run tests: |
+ |
+ ```sh |
+ make check |
+ ``` |
+ |
+6. To install the built libraries: |
+ |
+ ```sh |
+ make install |
+ ``` |
+ |
+If you need to reconfigure your build be sure to run `make distclean` first. |
+ |
+To update an existing checkout to a newer revision, you can `git pull origin master` as usual, but then you should run `gclient sync` to ensure that the dependent repos are up-to-date. |
vapier
2016/06/03 14:58:35
line wrap to 80 cols ?
do you really need "origin
Ted Mielczarek
2016/06/03 16:40:40
Done. The remotes are normal, just all the git doc
|
+ |
+## To request change review: |
vapier
2016/06/03 14:58:35
drop the trailing colon. it makes the TOC look we
Ted Mielczarek
2016/06/03 16:40:40
Done.
|
+ |
+1. Follow the steps above to get the source and build it. |
+ |
+2. Make changes. Build and test your changes. |
For core code like processor use methods above. |
For linux/mac/windows, there are test targets in each project file. |
-5. Commit your changes to your local repo and upload them to the server. |
+3. Commit your changes to your local repo and upload them to the server. |
http://dev.chromium.org/developers/contributing-code |
e.g. `git commit ... && git cl upload ...` |
You will be prompted for credential and a description. |
-6. At https://codereview.chromium.org/ you'll find your issue listed; click on |
+4. At https://codereview.chromium.org/ you'll find your issue listed; click on |
it, and select Publish+Mail, and enter in the code reviewer and CC |
google-breakpad-dev@googlegroups.com |