iwyu 8.21-1build1 source package in Ubuntu

Changelog

iwyu (8.21-1build1) noble; urgency=medium

  * No-change rebuild against libllvm17t64

 -- Steve Langasek <email address hidden>  Tue, 12 Mar 2024 07:09:50 +0000

Upload details

Uploaded by:
Steve Langasek
Uploaded to:
Noble
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
iwyu_8.21.orig.tar.gz 758.1 KiB a472fe8587376d041585c72e5643200f8929899f787725f0ba9e5b3d3820d401
iwyu_8.21-1build1.debian.tar.xz 6.3 KiB 7ce7056c98190feff676629b02d3724b7b7dde6b7745c6422875b9c86eb9333d
iwyu_8.21-1build1.dsc 2.0 KiB 81f4adba7c85068abd7498647ec531b6f761c5bffecefed64d5f6b9d46e9abc3

Available diffs

View changes file

Binary packages built by this source

iwyu: Analyze #includes in C and C++ source files

 "Include what you use" means this: for every symbol (type, function variable,
 or macro) that you use in foo.cc, either foo.cc or foo.h should #include a .h
 file that exports the declaration of that symbol. The include-what-you-use
 tool is a program that can be built with the clang libraries in order to
 analyze #includes of source files to find include-what-you-use violations,
 and suggest fixes for them.
 .
 The main goal of include-what-you-use is to remove superfluous #includes.
 It does this both by figuring out what #includes are not actually needed for
 this file (for both .cc and .h files), and replacing #includes with
 forward-declares when possible.

iwyu-dbgsym: debug symbols for iwyu