Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Add release notes for Windows specific changes in 18.x #80011

Merged
merged 2 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions clang/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1195,6 +1195,8 @@ Windows Support
linking may succeed but the resulting executables may expose issues at
runtime.

- Clang now passes relevant LTO options to the linker (LLD) in MinGW mode.

LoongArch Support
^^^^^^^^^^^^^^^^^
- Added builtins support for all LSX (128-bits SIMD) and LASX (256-bits SIMD)
Expand Down
16 changes: 16 additions & 0 deletions lld/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,25 @@ COFF Improvements
* Added support for ``--time-trace`` and associated ``--time-trace-granularity``.
This generates a .json profile trace of the linker execution.

* Prefer library paths specified with ``-libpath:`` over the implicitly
DavidSpickett marked this conversation as resolved.
Show resolved Hide resolved
detected toolchain paths.

MinGW Improvements
------------------

* Added support for many LTO and ThinLTO options.
DavidSpickett marked this conversation as resolved.
Show resolved Hide resolved

* LLD no longer tries to autodetect and pick up MSVC/WinSDK installations
DavidSpickett marked this conversation as resolved.
Show resolved Hide resolved
when run in MinGW mode.

* The ``--icf=safe`` option now works as expected; it was previously a no-op.

* More correctly handle LTO of files that define ``__imp_`` prefixed dllimport
redirections.

* The strip flags ``-S`` and ``-s`` now can be used to strip out DWARF debug
info and symbol tables while emitting a PDB debug info file.

MachO Improvements
------------------

Expand Down
14 changes: 14 additions & 0 deletions llvm/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,18 @@ Changes to the LLVM tools
* llvm-objcopy now supports ``--gap-fill`` and ``--pad-to`` options, for
ELF input and binary output files only.

* llvm-rc and llvm-windres now accept file path references in ``.rc`` files
concatenated from multiple string literals.

* The llvm-windres option ``--preprocessor`` now resolve its argument
in the PATH environment variable as expected, and options passed with
``--preprocessor-arg`` are placed before the input file as they should.
DavidSpickett marked this conversation as resolved.
Show resolved Hide resolved

* The llvm-windres option ``--preprocessor`` has been updated with the
breaking behaviour change from GNU windres from binutils 2.36, where
the whole argument is considered as one path, not considered as a
sequence of tool name and parameters.

Changes to LLDB
---------------------------------

Expand Down Expand Up @@ -359,6 +371,8 @@ Changes to LLDB
fields are present, however this is not always possible or entirely
accurate. If in doubt, refer to the numerical value.

* On Windows, LLDB can now read the thread names.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@oltolm Is this accurate for 95e5839?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, in the sense that if a thread has a name, it will display it.


Changes to Sanitizers
---------------------
* HWASan now defaults to detecting use-after-scope bugs.
Expand Down
Loading