diff --git a/packages/ponylang/0.39.0/build.sh b/packages/ponylang/0.39.0/build.sh index 67af002..9566c10 100755 --- a/packages/ponylang/0.39.0/build.sh +++ b/packages/ponylang/0.39.0/build.sh @@ -13,8 +13,12 @@ git submodule update --recursive --init cd ponyc -# build -make -j$(nproc) +# Build the vendored LLVM libraries that are included in the `lib/llvm/src`. +make libs build_flags="-j$(nproc)" +# Configure the CMake build directory. +make configure +# Will build pony and put it in `build/release`. +make build # Install pony into `$PREFIX`. make prefix="$PREFIX" install