mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
The goal here is to be able to locate all of the debug directories for active flatpak runtimes so that we can possibly decode debug libraries from them (after verifying build-id/CRC).
14 lines
230 B
C
14 lines
230 B
C
#include "sysprof-flatpak.h"
|
|
|
|
gint
|
|
main (gint argc,
|
|
gchar *argv[])
|
|
{
|
|
g_auto(GStrv) debug_dirs = sysprof_flatpak_debug_dirs ();
|
|
|
|
for (guint i = 0; debug_dirs[i]; i++)
|
|
g_print ("%s\n", debug_dirs[i]);
|
|
|
|
return 0;
|
|
}
|