From 407db4fe0662ac3c1df20ce2ed10577756d8c3ee Mon Sep 17 00:00:00 2001 From: Martin Svoboda Date: Fri, 28 Dec 2018 13:19:27 +0100 Subject: [PATCH] Fix installation on 32bit platforms --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d18341c..3105a21 100755 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ def run(self): module = Extension('pycld2._pycld2', language='c++', - extra_compile_args=['-w', '-O2', '-m64', '-fPIC'], + extra_compile_args=['-w', '-O2', '-fPIC'], include_dirs=include_dirs, libraries = [], sources=src_files,