[Orc][LibResolver] Fix GNU/Hurd build (#184470)
GNU/Hurd does not put a PATH_MAX static constraint on path lengths. We can instead check the symlink length.
[lldb] Fix section offset of synthesized entry point symbol (#190348)
In the non-ARM case, the offset was left unset, so the symbol
synthesized for the entry point pointed to the start of the containing
section.
As a drive-by change, simplify offset adjustment in ARM case.
www/gohugo: Update to 0.160.0
ChangeLog: https://github.com/gohugoio/hugo/releases/tag/v0.160.0
Bug fixes
* Fix some recently introduced Position issues
* markup/goldmark: Fix double-escaping of ampersands in link URLs
* tpl: Fix stray quotes from partial decorator in script context
Improvements
* all: Replace NewIntegrationTestBuilder with Test/TestE/TestRunning
* tpl/css:
* Improve and extend .Position handling in Goldmark render hooks
* markup/goldmark: Clean up test
Approved by: doceng@ (implicit)
www/gohugo: Update to 0.160.0
ChangeLog: https://github.com/gohugoio/hugo/releases/tag/v0.160.0
Bug fixes
* Fix some recently introduced Position issues
* markup/goldmark: Fix double-escaping of ampersands in link URLs
* tpl: Fix stray quotes from partial decorator in script context
Improvements
* all: Replace NewIntegrationTestBuilder with Test/TestE/TestRunning
* tpl/css:
* Improve and extend .Position handling in Goldmark render hooks
* markup/goldmark: Clean up test
Approved by: doceng@ (implicit)
[lldb] Bring more diagnostics in compliance with our coding standards (#190410)
The LLVM Coding Standards [1] specify that:
> [T]o match error message styles commonly produced by other tools,
> start the first sentence with a lowercase letter, and finish the last
> sentence without a period, if it would end in one otherwise.
Historically, that hasn't been something we've enforced in LLDB, but in
the past year or so I've started to pay more attention to this in code
reviews. This PR brings more error messages in compliance, further
increasing consistency.
I also adopted `createStringErrorV` where it improved the code as a
drive-by for lines I was already touching.
[1] https://llvm.org/docs/CodingStandards.html#error-and-warning-messages
Assisted-by: Claude Code