Missing Packages ================ Some packages were omitted from the Fedora installation in the VM disk image. Item 1 ------ Several code sanitizers used by GCC (such as ASan, TSan, etc.) require a corresponding run-time support library. The packages for these libraries were not installed. To install these missing packages, use the command: sudo dnf install -y libasan libasan-static liblsan liblsan-static libubsan libubsan-static libtsan libtsan-static (Incidentally, the code sanitizers for Clang seem to work without the above packages. So, this issue seems to only impact GCC, not Clang.) Item 2 ------ The Lcov software (for code coverage) is written in Perl and requires several Perl nodules that were not included in the Fedora installation. To add these missing packages, use the command: sudo dnf install -y perl-FindBin perl-Capture-Tiny perl-DateTime perl-DateTime-* perl-Devel-Cover perl-Digest-* perl-JSON-XS perl-Time-HiRes perl-Module-Load-Conditional perl-TimeDate