Files
CMake/Utilities/Scripts/update-libuv.bash
Brad King 2d77037b3a libuv: Update script to get libuv 1.52.0
We can move past 1.44.2 now because:

* We no longer support compilers without C11 atomics.

* We can restore support for Windows 7 and macOS 10.x
  ourselves, at least for the subset of libuv we need.

On other platforms libuv no longer supports, users can build
against an older external libuv.
2026-03-06 14:33:58 -05:00

30 lines
589 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="libuv"
readonly ownership="libuv upstream <libuv@googlegroups.com>"
readonly subtree="Utilities/cmlibuv"
readonly repo="https://github.com/libuv/libuv.git"
readonly tag="v1.52.0"
readonly shortlog=false
readonly exact_tree_match=false
readonly paths="
LICENSE
include
src
"
extract_source () {
git_archive
pushd "${extractdir}/${name}-reduced"
echo "* -whitespace" > .gitattributes
echo >> src/unix/aix-common.c
echo >> src/unix/ibmi.c
popd
}
. "${BASH_SOURCE%/*}/update-third-party.bash"