We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f62222 commit c4082beCopy full SHA for c4082be
python/setup.py
@@ -17,7 +17,8 @@
17
18
class BinaryDistribution(Distribution):
19
def has_ext_modules(self):
20
- return platform.system() == 'Darwin'
+ #return platform.system() == 'Darwin'
21
+ return True
22
23
CURRENT_DIR = os.path.dirname(__file__)
24
@@ -58,7 +59,7 @@ def config_cython():
58
59
path = "dgl/_ffi/_cython"
60
if os.name == 'nt':
61
library_dirs = ['dgl', '../build/Release', '../build']
- libraries = ['libtvm']
62
+ libraries = ['libdgl']
63
else:
64
library_dirs = None
65
libraries = None
0 commit comments