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 e8cb18b commit 0c988f7Copy full SHA for 0c988f7
PCbuild/pythoncore.vcxproj
@@ -652,7 +652,7 @@
652
<ClCompile Include="..\Python\symtable.c" />
653
<ClCompile Include="..\Python\sysmodule.c">
654
<PreprocessorDefinitions>
655
- VARCH_NAME="$(ArchName)";
+ ARCH_NAME="$(ArchName)";
656
VPATH="$(PyVPath)";
657
%(PreprocessorDefinitions)
658
</PreprocessorDefinitions>
Python/sysmodule.c
@@ -3358,8 +3358,8 @@ make_impl_info(PyObject *version_info)
3358
if (res < 0)
3359
goto error;
3360
3361
-#ifdef VARCH_NAME
3362
- value = PyUnicode_FromString(VARCH_NAME);
+#ifdef ARCH_NAME
+ value = PyUnicode_FromString(ARCH_NAME);
3363
if (value == NULL) {
3364
3365
}
0 commit comments