From 15e271920e199a538ea9dc53d82aaf6615e51090 Mon Sep 17 00:00:00 2001 From: Weiqi Gao Date: Tue, 16 Apr 2024 11:44:14 +0800 Subject: [PATCH] Update compile_bundle.bat to continue building after PyTorch --- scripts/compile_bundle.bat | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/compile_bundle.bat b/scripts/compile_bundle.bat index 269652f41..6ea9775b0 100644 --- a/scripts/compile_bundle.bat +++ b/scripts/compile_bundle.bat @@ -126,7 +126,7 @@ if defined CONDA_PREFIX ( set "CMAKE_PREFIX_PATH=%VIRTUAL_ENV%" ) set "CMAKE_INCLUDE_PATH=%CONDA_PREFIX%\Library\include" -set "LIB=%CONDA_PREFIX%\Library\lib;%LIB%" +set "LIB=%LIB%;%CONDA_PREFIX%\Library\lib" set "USE_NUMA=0" set "USE_CUDA=0" python setup.py clean @@ -134,7 +134,6 @@ python setup.py bdist_wheel set "USE_CUDA=" set "USE_NUMA=" -set "LIB=" set "CMAKE_INCLUDE_PATH=" set "CMAKE_PREFIX_PATH=" call conda remove mkl-static mkl-include -y