Skip to content

Commit 866ced9

Browse files
Andi Kleenmichal42
authored andcommitted
kbuild: Support split debug info v4
This is an alternative approach to lower the overhead of debug info (as we discussed a few days ago) gcc 4.7+ and newer binutils have a new "split debug info" debug info model where the debug info is only written once into central ".dwo" files. This avoids having to copy it around multiple times, from the object files to the final executable. It lowers the disk space requirements. In addition it defaults to compressed debug data. More details here: http://gcc.gnu.org/wiki/DebugFission This patch adds a new option to enable it. It has to be an option, because it'll undoubtedly break everyone's debuginfo packaging scheme. gdb/objdump/etc. all still work, if you have new enough versions. I don't see big compile wins (maybe a second or two faster or so), but the object dirs with debuginfo get significantly smaller. My standard kernel config (slightly bigger than defconfig) shrinks from 2.9G disk space to 1.1G objdir (with non reduced debuginfo). I presume if you are IO limited the compile time difference will be larger. Only problem I've seen so far is that it doesn't play well with older versions of ccache (apparently fixed, see https://bugzilla.samba.org/show_bug.cgi?id=10005) v2: various fixes from Dirk Gouders. Improve commit message slightly. v3: Fix clean rules and improve Kconfig slightly v4: Fix merge error in last version (Sam Ravnborg) Clarify description that it mainly helps disk size. Cc: Dirk Gouders <[email protected]> Signed-off-by: Andi Kleen <[email protected]> Acked-by: Sam Ravnborg <[email protected]> Signed-off-by: Michal Marek <[email protected]>
1 parent 011bf12 commit 866ced9

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
*.gcno
3535
modules.builtin
3636
Module.symvers
37+
*.dwo
3738

3839
#
3940
# Top-level generic files

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,11 @@ endif
684684
endif
685685

686686
ifdef CONFIG_DEBUG_INFO
687+
ifdef CONFIG_DEBUG_INFO_SPLIT
688+
KBUILD_CFLAGS += $(call cc-option, -gsplit-dwarf, -g)
689+
else
687690
KBUILD_CFLAGS += -g
691+
endif
688692
KBUILD_AFLAGS += -Wa,-gdwarf-2
689693
endif
690694

@@ -1372,6 +1376,7 @@ clean: $(clean-dirs)
13721376
@find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
13731377
\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
13741378
-o -name '*.ko.*' \
1379+
-o -name '*.dwo' \
13751380
-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
13761381
-o -name '*.symtypes' -o -name 'modules.order' \
13771382
-o -name modules.builtin -o -name '.tmp_*.o.*' \

lib/Kconfig.debug

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,21 @@ config DEBUG_INFO_REDUCED
143143
DEBUG_INFO build and compile times are reduced too.
144144
Only works with newer gcc versions.
145145

146+
config DEBUG_INFO_SPLIT
147+
bool "Produce split debuginfo in .dwo files"
148+
depends on DEBUG_INFO
149+
help
150+
Generate debug info into separate .dwo files. This significantly
151+
reduces the build directory size for builds with DEBUG_INFO,
152+
because it stores the information only once on disk in .dwo
153+
files instead of multiple times in object files and executables.
154+
In addition the debug information is also compressed.
155+
156+
Requires recent gcc (4.7+) and recent gdb/binutils.
157+
Any tool that packages or reads debug information would need
158+
to know about the .dwo files and include them.
159+
Incompatible with older versions of ccache.
160+
146161
config ENABLE_WARN_DEPRECATED
147162
bool "Enable __deprecated logic"
148163
default y

0 commit comments

Comments
 (0)