We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3a2593 commit cb593ccCopy full SHA for cb593cc
1 file changed
setup.py
@@ -334,7 +334,7 @@ def run(self):
334
if sys.platform != "win32":
335
write(" Running configure to work out SQLite compilation flags")
336
env = os.environ.copy()
337
- for v in "CC", "CFLAGS", "LDFLAGS", "CXX":
+ for v in "CC", "CFLAGS", "LDFLAGS":
338
val = sysconfig.get_config_var(v)
339
if val:
340
env[v] = val
@@ -858,7 +858,7 @@ def apply_patch(patch_lines, source_lines):
858
patch_file_name = pathlib.Path(__file__).parent / "tools" / "carray.patch"
859
860
if get_amalgamation_version(source_file_name) >= 3052000:
861
- print("No patches needed for this version")
+ print("No patches needed for this SQLite version")
862
return True
863
864
try:
0 commit comments