summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorNigel Croxon <nigel.croxon@hp.com>2015-07-16 12:31:23 -0400
committerNigel Croxon <nigel.croxon@hp.com>2015-07-16 12:31:23 -0400
commit11a459ba967bcdaed8c31c6ce4bbfb7ec54f8233 (patch)
tree5977c041a87d70b8631ca3ae6506ea26173e4037 /.gitignore
parentaac405cc66adb9f7c30fb68d9042a7dd8780def8 (diff)
downloadgnu-efi-11a459ba967bcdaed8c31c6ce4bbfb7ec54f8233.tar.gz
This patch makes the following symbols (relatively) consistent between
all of our linker scripts: _text _etext _text_size _data _edata _data_size There are various things that are slightly different (positions of .rela*, .dynamic, and similar in relation to .data), but _text and _data are now always at the beginning of their respective sections with regard to how a debuger would reference the debug info, and _etext and _edata are now always extant and guaranteed to be after any of the respective kind of data the debugger would look for in that section. This also adds an application example of how it might be used, and a makefile target for %.efi.debug which will generate a separate debuginfo file for that example. This also enables debugging by default (i.e. -g is in CFLAGS) and adds .note.gnu.build-id sections to our .so files (i.e. --build-id=sha1 is in LDFLAGS). Signed-off-by: Peter Jones <pjones@redhat.com> Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index bb18dcd..970b638 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
*.efi
+*.efi.debug
*.o
*.a
*.tar.*