Skip to content

Commit

Permalink
Add Debian Sid installation instructions (#2138)
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
SeanTAllen authored and Theodus committed Aug 5, 2017
1 parent 511080d commit 499a1df
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,25 @@ $ ./build/release/ponyc examples/helloworld
$ ./helloworld
```

### Debian Sid

Install pony dependencies:

```bash
$ sudo apt-get update
$ sudo apt-get install make gcc g++ git zlib1g-dev libncurses5-dev \
libssl-dev llvm llvm-dev libpcre2-dev
```

To build ponyc, compile and run helloworld:

```bash
$ cd ~/ponyc/
$ make default_pic=true
$ ./build/release/ponyc examples/helloworld
$ ./helloworld
```

### Ubuntu (14.04, 15.10, 16.04)

```bash
Expand Down

0 comments on commit 499a1df

Please sign in to comment.