Skip to content

Commit

Permalink
added missing dlls taken from from visual studio 2022 sdk ucrt
Browse files Browse the repository at this point in the history
  • Loading branch information
wsteffe committed Dec 15, 2023
1 parent f8276a5 commit ccc3d53
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/deploy-win-ucrt64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ fi
if [ "$MSYSTEM" == "UCRT64" ]; then
arch=win64-ucrt
ucrt_inst=/ucrt64
ucrt_vssdk="C:/Program Files (x86)/Windows Kits/10/Redist/10.0.22621.0/ucrt/DLLs/x64"
else
echo "ERROR: not in ucrt64 system."
fi
Expand Down Expand Up @@ -247,6 +248,12 @@ while [ "$new_libs" != "" ]; do
echo "Copying binary installation partial $ucrt_inst/bin/$l -> $target/$l"
cp $ucrt_inst/bin/$l $l
new_libs="$new_libs $l"
elif [ -e "${ucrt_vssdk}/$l" ] && ! [ -e "$target/$l" ]; then
echo "Copying binary installation partial $ucrt_inst/bin/$l -> $target/$l"
cp "${ucrt_vssdk}/${l}" "$target/$l"
new_libs="$new_libs $l"
elif ! [ -e C:/windows/system32/$l ] && ! [ -e "$pwd/bin/$l" ]; then
echo "NOT FOUND $l"
fi
done

Expand Down

0 comments on commit ccc3d53

Please sign in to comment.