mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-13 09:48:00 -06:00
lib: Update stm32f4 code to support gcc -fwhole-program
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
a31a6c1d6a
commit
5a02572001
3 changed files with 16 additions and 2 deletions
13
lib/stm32f4/stm32f4.patch
Normal file
13
lib/stm32f4/stm32f4.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
diff --git a/lib/stm32f4/system_stm32f4xx.c b/lib/stm32f4/system_stm32f4xx.c
|
||||
index 11c18d1a..b94cfb2f 100644
|
||||
--- a/lib/stm32f4/system_stm32f4xx.c
|
||||
+++ b/lib/stm32f4/system_stm32f4xx.c
|
||||
@@ -163,7 +163,7 @@ const uint8_t APBPrescTable[8] = {0, 0, 0, 0, 1, 2, 3, 4};
|
||||
* @param None
|
||||
* @retval None
|
||||
*/
|
||||
-void SystemInit(void)
|
||||
+void __attribute__((externally_visible)) SystemInit(void)
|
||||
{
|
||||
/* FPU settings ------------------------------------------------------------*/
|
||||
#if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
|
Loading…
Add table
Add a link
Reference in a new issue