diff options
author | Brad King <brad.king@kitware.com> | 2023-08-19 12:41:06 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-08-19 12:41:07 (GMT) |
commit | a891f7d0bf31817a83879b02f5f2a0fbf6913d6e (patch) | |
tree | 6aa7d5c6e7bca4794f3e66fa14648af6cee1cb8e /Utilities/Scripts | |
parent | 787a8061b3746d5720d3015a31bad050b3daca9a (diff) | |
parent | eee1dc10bea6d2528a08c4e844d96b1f45cfe2ff (diff) | |
download | CMake-a891f7d0bf31817a83879b02f5f2a0fbf6913d6e.zip CMake-a891f7d0bf31817a83879b02f5f2a0fbf6913d6e.tar.gz CMake-a891f7d0bf31817a83879b02f5f2a0fbf6913d6e.tar.bz2 |
Merge topic 'libuv-tweaks'
eee1dc10be libuv: Compile as C11 on all Solaris versions
d6b4f6dd97 libuv: Remove unused compatibility code for CMake < 3.9
5fb17a1410 libuv: win,spawn: allow %PATH% to be unset
703e3e03c3 libuv: Comment why we cannot update past 1.44.2
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !8744
Diffstat (limited to 'Utilities/Scripts')
-rwxr-xr-x | Utilities/Scripts/update-libuv.bash | 4 |
1 files changed, 4 insertions, 0 deletions
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 <libuv@googlegroups.com>" 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=" |