Skip to content

Commit

Permalink
ensure LIBRARY_{BIN,LIB} exist before copying stuff there
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Sep 9, 2024
1 parent 51cb6b2 commit 70e47af
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions recipe/build_global.bat
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ if NOT "%CONDA_BUILD_CROSS_COMPILATION%" == "1" (
if errorlevel 1 exit 1
)

:: ensure folders exist before copying there (don't check
:: for failure in case folder exists already; we don't care)
mkdir %LIBRARY_BIN%
mkdir %LIBRARY_LIB%

:: Copy built zlibwapi.dll with the same name provided by http://www.winimage.com/zLibDll/
:: This is needed for example for cuDNN
:: https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html#install-zlib-windows
Expand Down

0 comments on commit 70e47af

Please sign in to comment.