According to Clang's sources, the maximum supported storage alignment is a
property of the COFF object file format. Fixes building libc++ <type_traits>
with Clang on Windows.
Details
Details
- Reviewers
mclow.lists danalbert compnerd
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Yeah, this is a COFF limitation. Its unfortunate we don't have a better way to detect COFF targets.
Comment Actions
I guess this is OK. I'd rather not have naked _WIN32 references outside of <__config>, but this is not the first one.