8000 Fix conda build on 32-bit Windows · timomax/python_example@acb5f7d · GitHub
[go: up one dir, main page]

Skip to content

Commit acb5f7d

Browse files
committed
Fix conda build on 32-bit Windows
1 parent 516d265 commit acb5f7d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conda.recipe/bld.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x64
1+
if "%ARCH%" == "32" (set PLATFORM=x86) else (set PLATFORM=x64)
2+
call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM%
23
set DISTUTILS_USE_SDK=1
34
set MSSdk=1
45
"%PYTHON%" setup.py install

0 commit comments

Comments
 (0)
0