Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 523 Bytes

BUILD.md

File metadata and controls

34 lines (25 loc) · 523 Bytes

Building Corral From Source

You will need ponyc in your PATH.

From Source (FreeBSD)

git clone https://github.com/ponylang/corral
cd corral
gmake
sudo gmake install

From Source (Linux/macOS)

git clone https://github.com/ponylang/corral
cd corral
make
sudo make install

From Source (Windows)

In PowerShell:

git clone https://github.com/ponylang/corral
cd corral
.\make.ps1 build
.\make.ps1 test

You can make a debug build with .\make.ps1 build -Config Debug