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 cfc90a9 commit 197c786Copy full SHA for 197c786
setup.py
@@ -139,6 +139,8 @@ def build_isa_l(compiler_command: str, compiler_options: str):
139
if SYSTEM_IS_UNIX:
140
build_env["CFLAGS"] = compiler_options + " -fPIC"
141
elif SYSTEM_IS_WINDOWS:
142
+ # The nmake file has CLFAGS_REL for all the compiler options.
143
+ # This is added to CFLAGS with all the necessary include options.
144
build_env["CFLAGS_REL"] = compiler_options
145
if hasattr(os, "sched_getaffinity"):
146
cpu_count = len(os.sched_getaffinity(0))
0 commit comments