aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-07-08 23:31:21 -0700
committerDan Albert <danalbert@google.com>2015-07-09 12:45:03 -0700
commit44f106a74f1d53863fe390cc211f3dfb19b7bb59 (patch)
tree238fc08f365a5d93bb3249b1416b87b73c796ad3 /README.md
parentfab6bca490a6aa498b3647a28cab9041ab1c7f03 (diff)
downloadndk-44f106a74f1d53863fe390cc211f3dfb19b7bb59.tar.gz
Move checkbuild to Python.
checkbuild.sh was starting to get too complicated. Move it to a real language so we don't end up back in the mess we're trying to fix. Leave checkbuild.sh that just forwards to checkbuild.py until we've updated the build server configuration. Change-Id: Id13d6ba02506e46893788ca05e584cc850bc5813
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 8 insertions, 3 deletions
diff --git a/README.md b/README.md
index 8aa13d638..283abde29 100644
--- a/README.md
+++ b/README.md
@@ -104,14 +104,19 @@ Host/Target prebuilts
### On Linux:
```bash
-$ checkbuild.sh --also-64 --systems=linux-x86,windows
+$ python checkbuild.py --systems=linux-x86
+```
+
+### On Linux, for Windows:
+
+```bash
+$ python checkbuild.py --systems=windows
```
### On MacOS X:
```bash
-$ checkbuild.sh --systems=darwin-x86 --try-64
-$ checkbuild.sh --systems=darwin-x86
+$ python checkbuild.py
```
Packaging