Skip to content

Commit 1483f1f

Browse files
committed
Fix library linking order
1 parent bf23d56 commit 1483f1f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
from distutils.sysconfig import get_config_vars
1010

1111
if sys.platform == 'win32':
12-
libraries = ["flint", "arb", "mpir", "mpfr", "pthreads"]
12+
libraries = ["arb", "flint", "mpir", "mpfr", "pthreads"]
1313
else:
14-
libraries = ["flint", "arb"]
14+
libraries = ["arb", "flint"]
1515
(opt,) = get_config_vars('OPT')
1616
os.environ['OPT'] = " ".join(flag for flag in opt.split() if flag != '-Wstrict-prototypes')
1717

0 commit comments

Comments
 (0)