Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions libcxx/include/__configuration/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@
# include <picolibc.h>
#endif

// TODO: we should remove this once (#147956) is merged, for the same reason as listed above.
#if __has_include(<__llvm-libc-common.h>)
# include <__llvm-libc-common.h>
#endif

#ifndef __BYTE_ORDER__
# error \
"Your compiler doesn't seem to define __BYTE_ORDER__, which is required by libc++ to know the endianness of your target platform"
Expand Down
Loading