Skip to content
  • Andi Kleen's avatar
    Kbuild: Disable var tracking with CONFIG_DEBUG_INFO_REDUCED · e82c4bb8
    Andi Kleen authored
    
    
    Newer gcc enables the var-tracking pass with -g to keep track which
    registers contain which variables. This is one of the slower passes in gcc.
    
    With reduced debug info (aimed at objdump -S, but not using a full debugger)
    we don't need this fine grained tracking. But it was still enabled
    because -g was enabled. Disable it explicitely for DEBUG_INFO_REDUCED.
    
    On my 8T workstation this gives me about a 12 second gain in building
    a reasonable kernel config (2min16 vs 2min28) with DEBUG_INFO_REDUCED.
    With full DEBUG_INFO it takes 2min46
    
    The actual improvement in user time taken by the compiler is much higher
    (all CPU combined user time 15min5s vs 16m30 before)
    but the usual amdahl bottleneck on the linker prevents more speedup.
    It still saves some more energy and keeps cycles for other things.
    
    Signed-off-by: default avatarAndi Kleen <ak@linux.intel.com>
    Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
    e82c4bb8