Skip to content
Snippets Groups Projects

Add executable that identifies the ABI of libraries

Merged Ludovico de Nittis requested to merge wip/denittis/t28814 into master
Files
3
+ 14
6
@@ -126,7 +126,7 @@ print_library_details (const gchar *library_path,
else if (class == ELFCLASS64 && eh.e_machine == EM_X86_64)
identifier = "x86_64-linux-gnu";
else
identifier = "other";
identifier = "?";
fprintf (original_stdout, "%s=%s%c", library_path, identifier, separator);
}
@@ -193,17 +193,19 @@ run (int argc,
{
g_auto(GStrv) line_elements = NULL;
const gchar *library = NULL;
const gchar *colon = NULL;
g_autofree gchar *library_path = NULL;
/* skip empty lines */
if (ldconfig_entries[i][0] == '\0')
continue;
if (strchr (ldconfig_entries[i], ':') != NULL)
colon = strchr (ldconfig_entries[i], ':');
if (colon != NULL)
{
if (library_prefix != NULL)
g_free (library_prefix);
library_prefix = g_strdup (strtok (ldconfig_entries[i], ":"));
g_clear_pointer (&library_prefix, g_free);
library_prefix = g_strndup (ldconfig_entries[i], colon - ldconfig_entries[i]);
continue;
}
@@ -216,9 +218,15 @@ run (int argc,
}
else if (opt_directory != NULL)
{
g_autofree gchar *real_directory = NULL;
nftw_libraries = g_ptr_array_new_full (512, g_free);
real_directory = realpath (opt_directory, NULL);
if (real_directory == NULL)
return glnx_throw_errno_prefix (error, "Unable to realpath \"%s\"", opt_directory);
if (nftw (opt_directory, list_libraries_helper, 10, FTW_DEPTH|FTW_MOUNT|FTW_PHYS) < 0)
if (nftw (real_directory, list_libraries_helper, 10, FTW_DEPTH|FTW_PHYS) < 0)
{
g_ptr_array_free (nftw_libraries, TRUE);
return glnx_throw_errno_prefix (error, "Unable to iterate through \"%s\"", opt_directory);
Loading