We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d073a19 commit 96950a5Copy full SHA for 96950a5
setup.py
@@ -223,6 +223,9 @@ def get_extensions():
223
extra_compile_args["nvcc"] = [f for f in nvcc_flags if not ("-O" in f or "-g" in f)]
224
extra_compile_args["nvcc"].append("-O0")
225
extra_compile_args["nvcc"].append("-g")
226
+ else:
227
+ print("Compiling with debug mode OFF")
228
+ extra_compile_args["cxx"].append("-g0")
229
230
sources = [os.path.join(extensions_dir, s) for s in sources]
231
0 commit comments