Thu, 02 May 2024 02:19:32 UTC | login

Information for build iwyu-0.20-2.fc38

ID251408
Package Nameiwyu
Version0.20
Release2.fc38
Epoch
Sourcegit+https://src.fedoraproject.org/rpms/iwyu.git#f2f9e94290570cc543ad6c51339be831be241a41
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 complete
Volume DEFAULT
StartedFri, 30 Jun 2023 13:03:19 UTC
CompletedSat, 01 Jul 2023 14:42:47 UTC
Taskbuild (f38, /rpms/iwyu.git:f2f9e94290570cc543ad6c51339be831be241a41)
Extra{'source': {'original_url': 'git+https://src.fedoraproject.org/rpms/iwyu.git#f2f9e94290570cc543ad6c51339be831be241a41'}}
Tags
f38
f39
f40
RPMs
src
iwyu-0.20-2.fc38.src.rpm (info) (download)
riscv64
iwyu-0.20-2.fc38.riscv64.rpm (info) (download)
iwyu-debuginfo-0.20-2.fc38.riscv64.rpm (info) (download)
iwyu-debugsource-0.20-2.fc38.riscv64.rpm (info) (download)
Logs
riscv64
hw_info.log
state.log
build.log
root.log
mock_output.log
Changelog * 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.