+2019-02-12 John Baldwin <jhb@FreeBSD.org>
+
+ * symfile.c (find_separate_debug_file): Use canonical path of
+ sysroot with child_path instead of gdb_sysroot if it is valid.
+
2019-02-12 John Baldwin <jhb@FreeBSD.org>
* symfile.c (find_separate_debug_file): Use child_path to
const char *dir_notarget = target_prefix ? dir + strlen ("target:") : dir;
std::vector<gdb::unique_xmalloc_ptr<char>> debugdir_vec
= dirnames_to_char_ptr_vec (debug_file_directory);
+ gdb::unique_xmalloc_ptr<char> canon_sysroot = gdb_realpath (gdb_sysroot);
for (const gdb::unique_xmalloc_ptr<char> &debugdir : debugdir_vec)
{
if (separate_debug_file_exists (debugfile, crc32, objfile))
return debugfile;
- const char *base_path;
- if (canon_dir != NULL
- && (base_path = child_path (gdb_sysroot, canon_dir)) != NULL)
+ const char *base_path = NULL;
+ if (canon_dir != NULL)
+ {
+ if (canon_sysroot.get () != NULL)
+ base_path = child_path (canon_sysroot.get (), canon_dir);
+ else
+ base_path = child_path (gdb_sysroot, canon_dir);
+ }
+ if (base_path != NULL)
{
/* If the file is in the sysroot, try using its base path in
the global debugfile directory. */