iwyu 8.18-2 source package in Ubuntu

Changelog

iwyu (8.18-2) unstable; urgency=medium

  * Build using release.
    Thanks to Steven Trabert
    (Closes: #1016949)
  * Force the usage of clang-14 (Closes: #1014003, #1010495, #1003487)

 -- Sylvestre Ledru <email address hidden>  Wed, 10 Aug 2022 22:36:00 +0200

Upload details

Uploaded by:
LLVM Packaging Team
Uploaded to:
Sid
Original maintainer:
LLVM Packaging Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Downloads

File Size SHA-256 Checksum
iwyu_8.18-2.dsc 2.0 KiB 0cd776bf4322b0ae351e3904345457e009b2c16fae87d41ce4b1fc024c3538a2
iwyu_8.18.orig.tar.gz 732.8 KiB 497b8d01e7faf561a20b09fdff38b66ba50febe4b4b7cf3cf2e809ee3be55a99
iwyu_8.18-2.debian.tar.xz 8.7 KiB ee91ca8844406e4c137b26ed3c1a9f67e4c1642be6ad9f666da306b4e3e87939

Available diffs

No changes file available.

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