From 703e3e03c30c6400602b1140140e254dc5d02c2d Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 18 Aug 2023 15:52:07 -0400 Subject: libuv: Comment why we cannot update past 1.44.2 libuv 1.45 and above have higher minimum requirements than we do. Until we raise ours, we will have to stick with 1.44.2 and backport any further changes we need. --- Utilities/Scripts/update-libuv.bash | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Utilities/Scripts/update-libuv.bash b/Utilities/Scripts/update-libuv.bash index 280c684..1027436 100755 --- a/Utilities/Scripts/update-libuv.bash +++ b/Utilities/Scripts/update-libuv.bash @@ -8,6 +8,10 @@ readonly name="libuv" readonly ownership="libuv upstream " readonly subtree="Utilities/cmlibuv" readonly repo="https://github.com/libuv/libuv.git" +# We cannot import libuv 1.45 or higher because it has higher +# minimum system requirements than we do: +# - It requires C11 atomics from GCC 4.9+. We support GCC 4.8. +# - It requires Windows 8, we support Windows 7. readonly tag="v1.44.2" readonly shortlog=false readonly paths=" -- cgit v0.12