fetch: add -s/--symlink option for mirror mode
Add ability to create symlinks in All/ directory when fetching packages
with -o option. This helps tools like synth that expect packages directly
in All/ when repositories use Hashed/ subdirectories.
Also honor PKG_REPO_SYMLINK environment variable similar to pkg repo.
Fixes #2585
fetch: add -s/--symlink option for mirror mode
Add ability to create symlinks in All/ directory when fetching packages
with -o option. This helps tools like synth that expect packages directly
in All/ when repositories use Hashed/ subdirectories.
Also honor PKG_REPO_SYMLINK environment variable similar to pkg repo.
Fixes #2585
explicitly use external www/uriparser for the new 'uri' extension in PHP 8.5;
although it was previously mostly using the internal copy, aja@ ran into a
problem with this which must have been related to dpb junking during "make
fake".
pf: remove redundant zeroing
nlmsg_reserve_object() already zeroes the header before it gives it to
us, so there's no need to explicitly zero these fields again.
Sponsored by: Rubicon Communications, LLC ("Netgate")
pf: remove redundant zeroing
nlmsg_reserve_object() already zeroes the header before it gives it to
us, so there's no need to explicitly zero these fields again.
Sponsored by: Rubicon Communications, LLC ("Netgate")
www/drupal7*: update to latest upstream releases
- Update drupal7 from 7.98 to 7.103
- Update drupal7-wysiwyg from 7.x-2.9 to 7.x-2.10
Sponsored by: Netzkommune GmbH
InstCombine: Fixup known fp class for select and compare
Improve reported known fp-class when simplifying select.
Previously we just reported the conservative result that
the result class could be either of the inputs. Use the new
utility to apply the compare+select logic the default case of
computeKnownFPClass would catch.
[AArch64][llvm-mca] Add old Cyclone instruction tables for reference (#172652)
This patch adds static instruction tables tests for the old Cyclone
scheduling model bounded to `-mcpu=apple-m1`, for the sake of a
reference. It creates a new `llvm/test/tools/llvm-mca/AArch64/Apple`
directory, moves a Cyclone test there, and adds 2 tests
`basic-instructions` and `neon-instructions` from Neoverse with reusable
inputs (in addition to Neoverse, we also match stderr output of llvm-mca
for instruciton warnings).
InstCombine: Fixup known fp class for select and compare
Improve reported known fp-class when simplifying select.
Previously we just reported the conservative result that
the result class could be either of the inputs. Use the new
utility to apply the compare+select logic the default case of
computeKnownFPClass would catch.
ValueTracking: Refactor computeKnownFPClass select handling
Match the structure of ComputeKnownBits. Expose the condition
handling as a utility function so SimplifyDemanedFPClass can make
use of this. Avoids some redundant code and improves accuracy in
at least one case.