diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:30:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:30:55 +0000 |
commit | 17e81f2cd1843f01838245eae7b5ed5edf83d6be (patch) | |
tree | a0f685dff11ce5a2dc546a7b46a48bae5d1c0140 /ci/build_nghttp3.sh | |
parent | Initial commit. (diff) | |
download | ngtcp2-upstream/0.12.1+dfsg.tar.xz ngtcp2-upstream/0.12.1+dfsg.zip |
Adding upstream version 0.12.1+dfsg.upstream/0.12.1+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ci/build_nghttp3.sh')
-rwxr-xr-x | ci/build_nghttp3.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ci/build_nghttp3.sh b/ci/build_nghttp3.sh new file mode 100755 index 0000000..1e308ba --- /dev/null +++ b/ci/build_nghttp3.sh @@ -0,0 +1,9 @@ +#!/bin/sh -e +# build nghttp3 (for GitHub workflow) + +git clone https://github.com/ngtcp2/nghttp3 +cd nghttp3 +autoreconf -i +./configure --prefix=$PWD/build --enable-lib-only +make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)" check +make install |