mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-30 23:50:07 +01:00
Clean it up
This commit is contained in:
@@ -309,7 +309,11 @@ def main(wxDir, args):
|
||||
for major, minor in reversed(possibles):
|
||||
sdk = os.path.join(xcodePath, "SDKs/MacOSX{}.{}.sdk".format(major, minor))
|
||||
if os.path.exists(sdk):
|
||||
#wxpy_configure_opts.append("--with-macosx-sdk=%s" % sdk)
|
||||
# Although we've found a SDK, we're not actually using
|
||||
# it at the moment. The builds seem to work better if we
|
||||
# let the compiler use whatever it considers to be the
|
||||
# default.
|
||||
# wxpy_configure_opts.append("--with-macosx-sdk=%s" % sdk)
|
||||
universalCapable = major >= 11
|
||||
SDK = sdk
|
||||
break
|
||||
@@ -328,7 +332,7 @@ def main(wxDir, args):
|
||||
arch = options.mac_universal_binary
|
||||
configure_opts.append("--enable-universal_binary=%s" % arch)
|
||||
|
||||
print("SDK Path: {}".format(SDK))
|
||||
# print("SDK Path: {}".format(SDK))
|
||||
print("Universal Capable: {}".format(universalCapable))
|
||||
print("Architectures: {}".format(arch))
|
||||
|
||||
|
||||
@@ -21780,7 +21780,7 @@ static int __Pyx_check_binary_version(void) {
|
||||
if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) {
|
||||
char message[200];
|
||||
PyOS_snprintf(message, sizeof(message),
|
||||
"compile time version %s of module '%.100s' "
|
||||
"compiletime version %s of module '%.100s' "
|
||||
"does not match runtime version %s",
|
||||
ctversion, __Pyx_MODULE_NAME, rtversion);
|
||||
return PyErr_WarnEx(NULL, message, 1);
|
||||
|
||||
Reference in New Issue
Block a user