diff options
| author | Michael Brown | 2010-05-30 16:29:05 +0200 |
|---|---|---|
| committer | Michael Brown | 2010-05-31 04:11:57 +0200 |
| commit | 6c0e8c14be9546b49c097f5e6e8307bda3e7f5ac (patch) | |
| tree | b04dd064c978bf0525649e9d1b936a9724deadaf /src/arch | |
| parent | [pxe] Remove obsolete pxe_errortab.c (diff) | |
| download | ipxe-6c0e8c14be9546b49c097f5e6e8307bda3e7f5ac.tar.gz ipxe-6c0e8c14be9546b49c097f5e6e8307bda3e7f5ac.tar.xz ipxe-6c0e8c14be9546b49c097f5e6e8307bda3e7f5ac.zip | |
[libc] Enable automated extraction of error usage reports
Add preprocessor magic to the error definitions to enable every error
usage to be tracked.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch')
| -rw-r--r-- | src/arch/i386/scripts/i386.lds | 2 | ||||
| -rw-r--r-- | src/arch/x86/scripts/efi.lds | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/i386/scripts/i386.lds b/src/arch/i386/scripts/i386.lds index 0ce2c10f1..610bfa16b 100644 --- a/src/arch/i386/scripts/i386.lds +++ b/src/arch/i386/scripts/i386.lds @@ -162,6 +162,8 @@ SECTIONS { *(.eh_frame.*) *(.rel) *(.rel.*) + *(.einfo) + *(.einfo.*) *(.discard) } diff --git a/src/arch/x86/scripts/efi.lds b/src/arch/x86/scripts/efi.lds index 4368f7325..d9963ef3b 100644 --- a/src/arch/x86/scripts/efi.lds +++ b/src/arch/x86/scripts/efi.lds @@ -99,6 +99,8 @@ SECTIONS { *(.eh_frame.*) *(.rel) *(.rel.*) + *(.einfo) + *(.einfo.*) *(.discard) } } |
