runtime_loader: Fix #13799.

- Don't remove .eh_frame in the linker scripts, as this saves little
  space in practice, and results in debug binaries of the runtime loader
  not being properly debuggable due to missing canonical frame
  information.
This commit is contained in:
Rene Gollent
2017-12-02 15:41:41 -05:00
parent 5797d59f94
commit dfc46d83b7
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -64,5 +64,5 @@ SECTIONS
PROVIDE (_end = .);
/* Strip unnecessary stuff */
/DISCARD/ : { *(.comment .note .eh_frame .dtors) }
/DISCARD/ : { *(.comment .note .dtors) }
}
+1 -1
View File
@@ -59,5 +59,5 @@ SECTIONS
PROVIDE (_end = .);
/* Strip unnecessary stuff */
/DISCARD/ : { *(.comment .note .eh_frame .dtors) }
/DISCARD/ : { *(.comment .note .dtors) }
}
+1 -1
View File
@@ -59,5 +59,5 @@ SECTIONS
PROVIDE (_end = .);
/* Strip unnecessary stuff */
/DISCARD/ : { *(.comment .note .eh_frame .dtors) }
/DISCARD/ : { *(.comment .note .dtors) }
}
+1 -1
View File
@@ -59,5 +59,5 @@ SECTIONS
PROVIDE (_end = .);
/* Strip unnecessary stuff */
/DISCARD/ : { *(.comment .note .eh_frame .dtors) }
/DISCARD/ : { *(.comment .note .dtors) }
}
@@ -49,5 +49,5 @@ SECTIONS
PROVIDE (_end = .);
/* Strip unnecessary stuff */
/DISCARD/ : { *(.comment .note .eh_frame .dtors) }
/DISCARD/ : { *(.comment .note .dtors) }
}