summaryrefslogtreecommitdiff
path: root/packages/picolibc/1.4.7/0001-Add-ARM-exception-information-to-link-rules.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2022-02-11 02:00:59 (GMT)
committerAlexey Neyman <stilor@att.net>2022-02-11 08:47:51 (GMT)
commit86c2982568de1ad4d4cc12a65b19231331484405 (patch)
tree2e0b3fb78c30877c0c152d59d0e0fff817b73822 /packages/picolibc/1.4.7/0001-Add-ARM-exception-information-to-link-rules.patch
parent1210b0c2f45e32ef0867ca00e16b6aadb6a81bf9 (diff)
Run patches thru `manage-packages -P`
This refreshes the line numbers, removes any fuzz (which would make any future forward ports easier) and standardizes the patch/file headers (which makes them easier to read). Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/picolibc/1.4.7/0001-Add-ARM-exception-information-to-link-rules.patch')
-rw-r--r--packages/picolibc/1.4.7/0001-Add-ARM-exception-information-to-link-rules.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/picolibc/1.4.7/0001-Add-ARM-exception-information-to-link-rules.patch b/packages/picolibc/1.4.7/0001-Add-ARM-exception-information-to-link-rules.patch
new file mode 100644
index 0000000..233eafa
--- /dev/null
+++ b/packages/picolibc/1.4.7/0001-Add-ARM-exception-information-to-link-rules.patch
@@ -0,0 +1,31 @@
+From 9c39c93d4897c9ee1659dd6df7433d097a84be4a Mon Sep 17 00:00:00 2001
+From: Keith Packard <keithp@keithp.com>
+Date: Wed, 4 Nov 2020 17:36:14 -0800
+Subject: [PATCH] Add ARM exception information to link rules
+
+Place any ARM exeception information in ROM for C++ support.
+
+Signed-off-by: Keith Packard <keithp@keithp.com>
+---
+ picolibc.ld | 10 ++++++++++
+ 1 file changed, 10 insertions(+)
+
+--- a/picolibc.ld
++++ b/picolibc.ld
+@@ -94,6 +94,16 @@
+ *(.got .got.*)
+ } >flash AT>flash :text
+
++ .ARM.extab : {
++ *(.ARM.extab* .gnu.linkonce.armextab.*)
++ } >flash AT>flash :text
++
++ PROVIDE (__exidx_start = .);
++ .ARM.exidx : {
++ *(.ARM.exidx*)
++ } >flash AT>flash :text
++ PROVIDE(__exidx_end = .);
++
+ . = ALIGN(8);
+
+ .preinit_array : {