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
Install FileCheck for older (apt-based) distros (#770)
- Fixes#593, along with the changes just merged in #767.
This installs `FileCheck` for older (`apt`-based) distros so that we can
use `FileCheck` in testing without having to disable it anywhere.
Notably, we can use `FileCheck` for `c2rust-analyze` tests.
These older distros/default LLVM versions require the
`llvm-${major}-tools` or `llvm-${major}.${minor}-tools` packages, while
newer ones install `FileCheck` automatically, so this adds the
installation of the older versions if `FileCheck` is not found in the
expected location, `$(llvm-config --bindir)/FileCheck`, using the same
`llvm-config` resolution used elsewhere.
This changes the docker builds, so we'll need a
`./scripts/docker_build.sh push-all`.
This also adds an array of packages in the script, which makes adding to
it easier, as well as allowing for inline comments (which don't work
with `\` line continuation).
0 commit comments