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 9e2c6bd commit 8d87f6eCopy full SHA for 8d87f6e
src/scikit_build_core/builder/builder.py
@@ -167,7 +167,9 @@ def configure(
167
cache_config["SKBUILD_SOABI"] = ext_suffix.rsplit(".", 1)[0].lstrip(".")
168
169
# Allow CMakeLists to detect this is supposed to be a limited ABI build
170
- cache_config["SKBUILD_LIMITED_ABI"] = limited_abi
+ cache_config["SKBUILD_SABI_COMPONENT"] = (
171
+ "Development.SABIModule" if limited_abi else ""
172
+ )
173
174
if cache_entries:
175
cache_config.update(cache_entries)
0 commit comments