[libc] Add option to disable printf bit int (#180832)
Requested as a binary size optimization. Updates the parser, converter
utils, config, tests, and docs.
[llvm][cas] Validate OnDiskKeyValueDB against the corresponding OnDiskGraphDB (#180852)
We were previously using the primary OnDiskGraphDB when validating the
upstream OnDiskKeyValueDB, which is incorrect since the values being
stored are direct offsets and therefore cannot be used across DBs
without translating to a hash value first.
rdar://170067863
devel/prjpeppercorn111: Add new port
This port is used by devel/nextpnr* to produce configuration bitstreams for CologneChip GateMate FPGAs.
Notes:
- This port is versioned because of version compatibility requirements with devel/nextpnr*
- The timings tarball is mirrored because upstream currently does not provide a versioned archive/URL
Reviewed by: diizzy
Differential Revision: https://reviews.freebsd.org/D55235
sysutils/android-file-transfer: Improve port Makefile
- fixes to qt6 components in Makefile
MFH: 2026Q1
(cherry picked from commit ffafa186f95899d0b3727b63aafd59b23e40d726)
[docs] Move Maintainers.rst to Maintainers.md in preparation to reformat
This change intentionally produces malformatted documentation, and is
only present to ensure git detects the file rename for blame purposes.
[clang] Convert Maintainers.md from rst to markdown
I link-ified the github usernames as well, and tried to match the LLVM
maintainer file formatting.
This move may cause issues with CMake incremental builds, but this can
be fixed by deleting the entire build director, or if you prefer to be
more targetted, just `build/tools/clang/docs`, since that will have a
stale Maintainers.rst file otherwise.
[BOLT] Keep folded functions in BinaryFunctions map. NFC (#180392)
In relocation mode, keep folded functions in the BinaryFunctions map
instead of erasing them. Mark them as folded using setFolded() and skip
emitting them.