We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414e497 commit 12420c1Copy full SHA for 12420c1
src/python/flint_ctypes.py
@@ -3,7 +3,10 @@
3
import sys
4
import functools
5
6
-libflint = ctypes.CDLL("libflint.so")
+if sys.platform == "darwin":
7
+ libflint = ctypes.CDLL("libflint.dylib")
8
+else:
9
+ libflint = ctypes.CDLL("libflint.so")
10
libcalcium = libarb = libgr = libflint
11
12
T_TRUE = 0
0 commit comments