Hello. Starting with this snapshot, debuginfod is enabled by default (via /etc/profile.d/debuginfod.sh ENV variable). Right now, our server instance indexes openSUSE:Factory packages for i586 and x86_64 targets. One small example: $ gdb `which make` -ex 'set height unlimited' -ex 'set confirm off' -ex start -ex bt -ex 'p argv[0]' -ex list -ex q ... Reading symbols from /usr/bin/make... Downloading separate debug info for /usr/bin/make... Reading symbols from /home/marxin/.cache/debuginfod_client/7daf1620b47e92a1f4452405a617418b214f0f0b/debuginfo... Downloading source file /usr/src/debug/make-4.3-2.22.x86_64/src/main.c... Temporary breakpoint 1 at 0xa840: file src/main.c, line 1056. Starting program: /usr/bin/make Downloading separate debug info for /lib64/ld-linux-x86-64.so.2... Downloading separate debug info for /lib64/libdl.so.2... Downloading separate debug info for /lib64/libc.so.6... Temporary breakpoint 1, main (argc=1, argv=0x7fffffffde78, envp=0x7fffffffde88) at src/main.c:1056 1056 { #0 main (argc=1, argv=0x7fffffffde78, envp=0x7fffffffde88) at src/main.c:1056 $1 = 0x7fffffffe2a0 "/usr/bin/make" 1051 main (int argc, char **argv) 1052 #else 1053 int 1054 main (int argc, char **argv, char **envp) 1055 #endif 1056 { 1057 static char *stdin_nm = 0; 1058 int makefile_status = MAKE_SUCCESS; 1059 struct goaldep *read_files; 1060 PATH_VAR (current_directory); Martin