Commit dd4f686c authored by Kevin Modzelewski's avatar Kevin Modzelewski

Merge branch 'master' of github.com:dropbox/pyston into github

parents 2cbc2f19 77b5f371
......@@ -2,6 +2,11 @@ Pyston currently only supports installing from source; the following instruction
The build instructions assume that you will put the Pyston source code in `~/pyston` and put the dependencies in `~/pyston_deps`. Barring any bugs, you should be free to put them anywhere you'd like, though the instructions in this file would have to be altered before following. Also, if you want to change the dependency dir, you'll have to change the value of the the `DEPS_DIR` variable in `src/Makefile`.
### Prerequisites
GNU make is required to build pyston.
Start off by making the relevant directories:
```
......
#!/bin/bash
#!/bin/sh
set -eu
......
#!/bin/bash
#!/bin/sh
set -eu
failed=0
for fn in $(find -name '*.cpp' -o -name '*.h'); do
for fn in $(find . -name '*.cpp' -o -name '*.h'); do
$1 -style=file -output-replacements-xml $fn | grep -q "replacement offset" && { echo $fn "failed clang-format check"; failed=1; }
done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment