Browse Source

Merge pull request #2106 from zhaojuntao/lds-1224

[bsp] 为常用板卡的 gcc 链接脚本增加 utest section 段
Bernard Xiong 6 years ago
parent
commit
cd4ac30b80

+ 6 - 0
bsp/qemu-vexpress-a9/link.lds

@@ -11,6 +11,12 @@ SECTIONS
         *(.text)
         *(.text.*)
 
+        /* section information for utest */
+        . = ALIGN(4);
+        __rt_utest_tc_tab_start = .;
+        KEEP(*(UtestTcTab))
+        __rt_utest_tc_tab_end = .;
+        
         /* section information for finsh shell */
         . = ALIGN(4);
         __fsymtab_start = .;

+ 6 - 0
bsp/stm32/stm32f429-atk-apollo/board/linker_scripts/link.lds

@@ -31,6 +31,12 @@ SECTIONS
         *(.glue_7t)
         *(.gnu.linkonce.t*)
 
+        /* section information for utest */
+        . = ALIGN(4);
+        __rt_utest_tc_tab_start = .;
+        KEEP(*(UtestTcTab))
+        __rt_utest_tc_tab_end = .;
+
         /* section information for finsh shell */
         . = ALIGN(4);
         __fsymtab_start = .;