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 1b836d6 commit f517114Copy full SHA for f517114
setup.py
@@ -64,6 +64,9 @@ def build_extension(self, ext):
64
elif sys.platform.startswith("win"):
65
ext.extra_objects = [
66
os.path.join(isa_l_prefix_dir, "isa-l_static.lib")]
67
+ else:
68
+ raise NotImplementedError(
69
+ f"Unsupported platform: {sys.platform}")
70
ext.include_dirs = [os.path.join(isa_l_prefix_dir,
71
"include")]
72
# -fPIC needed for proper static linking
0 commit comments