-
- Downloads
cmSystemTools: Improve CreateLink and CreateSymlink error codes
In commit 7f890539 (cmSystemTools: Return KWSys Status from CreateLink and CreateSymlink, 2021-04-15) we just took the `-err` from libuv and treated it as a POSIX error. This is accurate on POSIX, but on Windows does not match the POSIX error codes. Use `uv_fs_get_system_error` to get the actual system error code. This requires libuv 1.38 or higher. Require that for Windows, but fall back to the previous approach on POSIX.
Showing
- CMakeLists.txt 5 additions, 1 deletionCMakeLists.txt
- Source/cmSystemTools.cxx 15 additions, 3 deletionsSource/cmSystemTools.cxx
- Tests/RunCMake/CommandLine/E_create_hardlink-no-directory-stderr.txt 1 addition, 1 deletion...ake/CommandLine/E_create_hardlink-no-directory-stderr.txt
- Tests/RunCMake/CommandLine/E_create_hardlink-unresolved-symlink-prereq-check.cmake 1 addition, 1 deletion...e/E_create_hardlink-unresolved-symlink-prereq-check.cmake
- Tests/RunCMake/CommandLine/E_create_symlink-broken-create-check.cmake 1 addition, 1 deletion...ke/CommandLine/E_create_symlink-broken-create-check.cmake
- Tests/RunCMake/CommandLine/E_create_symlink-broken-replace-check.cmake 1 addition, 1 deletion...e/CommandLine/E_create_symlink-broken-replace-check.cmake
- Tests/RunCMake/CommandLine/RunCMakeTest.cmake 2 additions, 2 deletionsTests/RunCMake/CommandLine/RunCMakeTest.cmake
Loading
Please register or sign in to comment