2007-04-12 16:58:31 +02:00
|
|
|
Include compilation directory in source file list if used.
|
|
|
|
|
|
|
|
---
|
|
|
|
tools/debugedit.c | 28 +++++++++++++++++++++++++++-
|
|
|
|
1 file changed, 27 insertions(+), 1 deletion(-)
|
|
|
|
|
2008-09-12 20:37:28 +02:00
|
|
|
Index: tools/debugedit.c
|
|
|
|
===================================================================
|
|
|
|
--- tools/debugedit.c.orig
|
|
|
|
+++ tools/debugedit.c
|
2009-08-28 15:54:03 +02:00
|
|
|
@@ -495,6 +495,7 @@ edit_dwarf2_line (DSO *dso, uint32_t off
|
|
|
|
uint32_t value, dirt_cnt;
|
2007-04-12 16:58:31 +02:00
|
|
|
size_t comp_dir_len = strlen (comp_dir);
|
|
|
|
size_t abs_file_cnt = 0, abs_dir_cnt = 0;
|
|
|
|
+ int comp_dir_used = 0;
|
|
|
|
|
|
|
|
if (phase != 0)
|
|
|
|
return 0;
|
2009-08-28 15:54:03 +02:00
|
|
|
@@ -603,6 +604,7 @@ edit_dwarf2_line (DSO *dso, uint32_t off
|
2008-09-12 20:37:28 +02:00
|
|
|
memcpy (p, dirt[value], dir_len);
|
|
|
|
p[dir_len] = '/';
|
|
|
|
memcpy (p + dir_len + 1, file, file_len + 1);
|
2007-04-12 16:58:31 +02:00
|
|
|
+ comp_dir_used = 1;
|
2008-09-12 20:37:28 +02:00
|
|
|
}
|
|
|
|
canonicalize_path (s, s);
|
|
|
|
if (list_file_fd != -1)
|
2009-08-28 15:54:03 +02:00
|
|
|
@@ -635,7 +637,31 @@ edit_dwarf2_line (DSO *dso, uint32_t off
|
2007-04-12 16:58:31 +02:00
|
|
|
read_uleb128 (ptr);
|
|
|
|
}
|
|
|
|
++ptr;
|
|
|
|
-
|
|
|
|
+
|
|
|
|
+ if (comp_dir_used && list_file_fd != -1
|
|
|
|
+ && (base_dir == NULL || has_prefix (comp_dir, base_dir)))
|
|
|
|
+ {
|
|
|
|
+ char *p;
|
|
|
|
+ size_t size;
|
|
|
|
+ ssize_t ret;
|
|
|
|
+
|
|
|
|
+ size = comp_dir_len + 1;
|
|
|
|
+ p = comp_dir;
|
|
|
|
+ if (base_dir)
|
|
|
|
+ {
|
|
|
|
+ p += strlen (base_dir);
|
|
|
|
+ size -= strlen (base_dir);
|
|
|
|
+ }
|
|
|
|
+ while (size > 0)
|
|
|
|
+ {
|
|
|
|
+ ret = write (list_file_fd, p, size);
|
|
|
|
+ if (ret == -1)
|
|
|
|
+ break;
|
|
|
|
+ size -= ret;
|
|
|
|
+ p += ret;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (dest_dir)
|
|
|
|
{
|
|
|
|
unsigned char *srcptr, *buf = NULL;
|