diff options
author | Victor Stinner <vstinner@python.org> | 2020-09-01 16:25:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 16:25:14 (GMT) |
commit | e6905e4c82cc05897dc1bf5ab2b5b94b2b043a7f (patch) | |
tree | 9db617818ea306e8979049178322281524385534 /Misc | |
parent | 0d6aa7f0ee38eb453bc8f73bf4830e6172be2f35 (diff) | |
download | cpython-e6905e4c82cc05897dc1bf5ab2b5b94b2b043a7f.zip cpython-e6905e4c82cc05897dc1bf5ab2b5b94b2b043a7f.tar.gz cpython-e6905e4c82cc05897dc1bf5ab2b5b94b2b043a7f.tar.bz2 |
bpo-41617: Fix pycore_bitutils.h to support clang 3.0 (GH-22042)
__builtin_bswap16() is not available in LLVM clang 3.0.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2020-08-24-18-34-01.bpo-41617.sKKXz7.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2020-08-24-18-34-01.bpo-41617.sKKXz7.rst b/Misc/NEWS.d/next/Build/2020-08-24-18-34-01.bpo-41617.sKKXz7.rst new file mode 100644 index 0000000..715eadb --- /dev/null +++ b/Misc/NEWS.d/next/Build/2020-08-24-18-34-01.bpo-41617.sKKXz7.rst @@ -0,0 +1,2 @@ +Fix ``pycore_bitutils.h`` header file to support old clang versions: +``__builtin_bswap16()`` is not available in LLVM clang 3.0. |