From 983a91adae4ad83451a918f30933b1026fb1538b Mon Sep 17 00:00:00 2001 From: Shivansh-007 Date: Wed, 31 Mar 2021 22:24:34 +0530 Subject: [PATCH] pkg(pony-0.39.0): User proper installation instructions, like specified in the installation guide --- packages/ponylang/0.39.0/build.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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