Skip to content

Commit 677078f

Browse files
committed
removing cmake args related to maxsize
1 parent 19f81e3 commit 677078f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ requirements:
4242
- boost
4343
- eigen
4444
- gmp 6.1.2 # [not win]
45-
- gmp 5.0* # [win]
4645
- mpfr 4.0.1 # [not win]
46+
- gmp 5.0* # [win]
4747
- mpfr 3.0* # [win]
4848
run:
4949
- python

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ def build_extension(self, ext):
5656

5757
if platform.system() == "Windows":
5858
cmake_args += ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{}={}'.format(cfg.upper(), extdir)]
59-
if sys.maxsize > 2**32:
60-
cmake_args += ['-A', 'x64']
59+
# if sys.maxsize > 2**32:
60+
# cmake_args += ['-A', 'x64']
6161
build_args += ['--', '/m']
6262
else:
6363
# # For MacOS.

0 commit comments

Comments
 (0)