Sun, 05 May 2024 06:32:56 UTC | login

Information for build iwyu-0.20-3.fc40

ID275876
Package Nameiwyu
Version0.20
Release3.fc40
Epoch
Sourcegit+https://src.fedoraproject.org/rpms/iwyu.git#9aa9202727c0b71d7e724fc03bc2b6404602f114
SummaryC/C++ source files #include analyzer based on clang
Description"Include what you use" means this: for every symbol (type, function, variable, or macro) that you use in foo.cc (or foo.cpp), either foo.cc or foo.h should include a .h file that exports the declaration of that symbol. (Similarly, for foo_test.cc, either foo_test.cc or foo.h should do the including.) Obviously symbols defined in foo.cc itself are excluded from this requirement. This puts us in a state where every file includes the headers it needs to declare the symbols that it uses. When every file includes what it uses, then it is possible to edit any file and remove unused headers, without fear of accidentally breaking the upwards dependencies of that file. It also becomes easy to automatically track and update dependencies in the source code.
Built bydavidlt
State failed
Volume DEFAULT
StartedWed, 20 Mar 2024 14:20:32 UTC
CompletedWed, 20 Mar 2024 15:38:24 UTC
Taskbuild (f40, /rpms/iwyu.git:9aa9202727c0b71d7e724fc03bc2b6404602f114)
Extra{'source': {'original_url': 'git+https://src.fedoraproject.org/rpms/iwyu.git#9aa9202727c0b71d7e724fc03bc2b6404602f114'}}
Tags No tags
RPMs No RPMs
Changelog * Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Mon Jun 26 2023 Vitaly Zaitsev <vitaly@easycoding.org> - 0.20-2 - Disabled frame pointers to fix crashes on F38+. * Mon Apr 03 2023 Vitaly Zaitsev <vitaly@easycoding.org> - 0.20-1 - Updated to version 0.20. * Sun Mar 19 2023 Vitaly Zaitsev <vitaly@easycoding.org> - 0.19-1 - Resurrected package. - Updated to version 0.19. - Performed major SPEC cleanup. - Fixed issues with tests.