raulcd commented on PR #50406: URL: https://github.com/apache/arrow/pull/50406#issuecomment-4903444345
@pitrou the problem seems to be that Debug builds try to link `python313_d.lib` instead of `python313.lib. This seems to be defined upstream on Python itself here (link for 3.16 but 3.13 is the same): https://github.com/python/cpython/blob/2cd5b79284dd2331cbd9e11afabbfbf7e906103d/PC/pyconfig.h#L340-L342 And it fails with: ``` LINK : fatal error LNK1104: cannot open file 'python313_d.lib' ``` On the Windows CI job we use actions/setup-python which do not allow to install CPython debug. I could try `RelWithDebInfo` instead of `DEBUG`otherwise I think we require installing CPython on Debug mode (manually?) which would not allow us to use the setup-python action. Do you have other ideas? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
