summaryrefslogtreecommitdiff
path: root/bin/gen-iwyu-dummy-lib.awk
blob: 464d9515c7ef62f37ee84cc0b7f231a8bbc07d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
BEGIN  { domatch = 0; }

{
    if ($0 ~ /use_external(s)?,/ )
    {
        if (index($0, "))"))
        {
            gsub(/.*,/, "");
            gsub(/\)+/, ""); 
            if (!($0 in exts))
            {
                exts[$0];
                print $0;
            }
        }
        else
        {
           domatch = 1;
        }
    }
    else if ($0 ~ /\)\)/ )
    {
        domatch = 0;
    }
    else if (domatch == 1)
    {
        if (!($1 in exts))
        {
            exts[$1];
            print $1;
        }
    }
}

generate PCH headers for the 4 new levelsLuboš Luňák 2017-09-22Fresh run of bin/update_pch.shMike Kaganski 2015-11-15Fast PCH generator and optimized PCH filesAshod Nakashian 2015-07-13tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe 2015-02-16boost::noncopyable->'= delete'Caolán McNamara 2015-02-16boost::foo_ptr->std::foo_ptrCaolán McNamara 2015-02-06fdo#75757: Remove inheritance from std::vectorMatthew Pottage 2014-08-13update_pchThomas Arnhold 2014-05-28update_pchThomas Arnhold 2014-05-22update_pch: add configmgrThomas Arnhold