Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-131591: Fix GENERATE_DEBUG_SECTION for clangcl on Windows #132112

Merged

Conversation

chris-eibl
Copy link
Contributor

@chris-eibl chris-eibl commented Apr 5, 2025

See #132098 where the discussion started.

I think this a skip news?

Maybe a skip issue, too? Unsure, whether to link with #131591.

#if defined(MS_WINDOWS) && !defined(__clang__)
// Please note that section names are truncated to eight bytes
// on Windows!
#if defined(MS_WINDOWS)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Fidget-Spinner: clang-cl actually understands the __declspec and now we have the same section name without the . like for MSVC.

@@ -116,7 +116,7 @@ typedef struct _Py_AsyncioModuleDebugOffsets {
} asyncio_thread_state;
} Py_AsyncioModuleDebugOffsets;

GENERATE_DEBUG_SECTION(AsyncioDebug, Py_AsyncioModuleDebugOffsets AsyncioDebug)
GENERATE_DEBUG_SECTION(AsyncioDebug, Py_AsyncioModuleDebugOffsets _AsyncioDebug)
Copy link
Contributor Author

@chris-eibl chris-eibl Apr 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, this is the reason why clangcl failed with

error: symbol 'AsyncioDebug' is already defined

https://github.com/python/cpython/actions/runs/13288425017/job/37102791006#step:4:243

This also "syncs" with

GENERATE_DEBUG_SECTION(PyRuntime, _PyRuntimeState _PyRuntime)

where _PyRuntime has a leading underscore, too.

@hugovk hugovk removed their request for review April 5, 2025 11:55
@Fidget-Spinner
Copy link
Member

We need a news entry please, because the debug section is now an externally facing thing. And we changed the name for _AsyncioDebug.

@chris-eibl
Copy link
Contributor Author

The debug section name did not change, and the _AsyncioDebug is only an internal variable name?

Otherwise, the test cases would have failed - they only do the lookup per section name.

But sure, I can add a news entry. Can you suggest a wording?

@Fidget-Spinner
Copy link
Member

The debug section name did not change, and the _AsyncioDebug is only an internal variable name?

Just to clarify: there are no changes to the name of the symbol in the binary? If there aren't any changes, we can skip the news entry.

@chris-eibl
Copy link
Contributor Author

IMHO, the only change in the Windows clang-cl binary is, that now the PyRuntim and AsyncioD sections are emitted, like MSVC does. For all other platforms, nothing should have changed.

So I could mention something like "GENERATE_DEBUG_SECTION now emits the debug sections for clang-cl on Windows."

In case of Windows, the symbol names are in the pdb files, in case of Linux in the ELF files (unless stripped). I don't know whether this shall be mentioned, but strictly speaking - sure you are correct: the symbol name has changed.

Whether (and how spelled) that shall go into a news entry I am unsure about.

@Fidget-Spinner
Copy link
Member

Ok if there's no change on existing platforms we can skip news.

Copy link
Member

@Fidget-Spinner Fidget-Spinner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@Fidget-Spinner Fidget-Spinner merged commit d827d4d into python:main Apr 5, 2025
46 checks passed
@chris-eibl chris-eibl deleted the fix_clangcl_GENERATE_DEBUG_SECTION branch April 6, 2025 07:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants