There was an error while loading. Please reload this page.
2 parents ecf4146 + 24514f8 commit 142b277Copy full SHA for 142b277
1 file changed
setup.py
@@ -322,11 +322,13 @@ def get_build_type(is_debug=None) -> str:
322
# need for it.
323
_UNSUPPORTED_WHEEL_HEADERS = frozenset(
324
{
325
- "bundled_module.h",
326
- # These two include a third-party header the wheel does not ship, so they
327
- # cannot compile from an installed package no matter what is linked.
+ # These two include a third-party header the wheel does not ship, so they cannot
+ # compile from an installed package no matter what is linked.
328
"cpuinfo_utils.h",
329
"threadpool.h",
+ # These three compile, but declare entry points whose definitions are not in any
330
+ # shipped library, so a consumer that includes them fails at link time.
331
+ "bundled_module.h",
332
"file_descriptor_data_loader.h",
333
"serialize.h",
334
}
0 commit comments