You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clang/docs/ClangOffloadBundler.rst
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -542,3 +542,5 @@ The compressed offload bundle begins with a header followed by the compressed bi
542
542
543
543
- **Compressed Data**:
544
544
The actual compressed binary data follows the header. Its size can be inferred from the total size of the file minus the header size.
545
+
546
+
> **Note**: Version 3 of the format is under development. It uses 64-bit fields for Total File Size and Uncompressed Binary Size to support files larger than 4GB. To experiment with version 3, set the environment variable `COMPRESSED_BUNDLE_FORMAT_VERSION=3`. This support is experimental and not recommended for production use.
Copy file name to clipboardExpand all lines: clang/docs/ReleaseNotes.rst
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -828,6 +828,8 @@ Improvements to Clang's diagnostics
828
828
}
829
829
- Diagnose invalid declarators in the declaration of constructors and destructors (#GH121706).
830
830
831
+
- Fix false positives warning for non-std functions with name `infinity` (#123231).
832
+
831
833
Improvements to Clang's time-trace
832
834
----------------------------------
833
835
@@ -995,6 +997,7 @@ Bug Fixes to C++ Support
995
997
- Fixed a crash caused by the incorrect construction of template arguments for CTAD alias guides when type
996
998
constraints are applied. (#GH122134)
997
999
- Fixed canonicalization of pack indexing types - Clang did not always recognized identical pack indexing. (#GH123033)
1000
+
- Fixed a nested lambda substitution issue for constraint evaluation. (#GH123441)
998
1001
999
1002
1000
1003
Bug Fixes to AST Handling
@@ -1165,6 +1168,7 @@ RISC-V Support
1165
1168
CUDA/HIP Language Changes
1166
1169
^^^^^^^^^^^^^^^^^^^^^^^^^
1167
1170
- Fixed a bug about overriding a constexpr pure-virtual member function with a non-constexpr virtual member function which causes compilation failure when including standard C++ header `format`.
1171
+
- Added initial support for version 3 of the compressed offload bundle format, which uses 64-bit fields for Total File Size and Uncompressed Binary Size. This enables support for files larger than 4GB. The support is currently experimental and can be enabled by setting the environment variable `COMPRESSED_BUNDLE_FORMAT_VERSION=3`.
0 commit comments