From f6a717f5e4d6cd5c9415608d416b13a00287fea4 Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Thu, 9 Jan 2020 13:31:43 +0000
Subject: [PATCH] graphics: Produce more diagnostic information if we can't
 load the loader

If running without supplying library expectations, we won't necessarily
have this anywhere else in our output.

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 steam-runtime-tools/graphics.c | 26 ++++++++++++++++++++++++--
 1 file changed, 24 insertions(+), 2 deletions(-)

diff --git a/steam-runtime-tools/graphics.c b/steam-runtime-tools/graphics.c
index ffd1ed3bc..90bcdecc1 100644
--- a/steam-runtime-tools/graphics.c
+++ b/steam-runtime-tools/graphics.c
@@ -2717,8 +2717,30 @@ _srt_get_modules_full (gchar **envp,
       gchar *libdir;
       gchar *dri_path;
       GList *extras = NULL;
-      _srt_check_library_presence (helpers_path, loader_libraries[i], multiarch_tuple, NULL, NULL,
-                                   envp, SRT_LIBRARY_SYMBOLS_FORMAT_PLAIN, &library_details);
+      SrtLibraryIssues issues;
+
+      issues = _srt_check_library_presence (helpers_path,
+                                            loader_libraries[i],
+                                            multiarch_tuple,
+                                            NULL,   /* symbols path */
+                                            NULL,   /* hidden dependencies */
+                                            envp,
+                                            SRT_LIBRARY_SYMBOLS_FORMAT_PLAIN,
+                                            &library_details);
+
+      if (issues & (SRT_LIBRARY_ISSUES_CANNOT_LOAD |
+                    SRT_LIBRARY_ISSUES_INTERNAL_ERROR |
+                    SRT_LIBRARY_ISSUES_TIMEOUT))
+        {
+          const char *messages = srt_library_get_messages (library_details);
+
+          if (messages == NULL || messages[0] == '\0')
+            messages = "(no diagnostic output)";
+
+          g_debug ("Unable to load library %s: %s",
+                   loader_libraries[i],
+                   messages);
+        }
 
       const gchar *loader_path = srt_library_get_absolute_path (library_details);
       if (loader_path == NULL)
-- 
GitLab