Increase TCK speed.
[riscv-tests.git] / debug / targets / m2gl_m2s / link.lds
index 260b014680217246fcf8e27206a640070e1978c2..a922b410c00eb7bc637eba9490cec07f3e737429 100755 (executable)
@@ -2,7 +2,7 @@ OUTPUT_ARCH( "riscv" )
 
 SECTIONS
 {
-  . = 0x60040000;
+  . = 0x80000000;
   .text : 
   {
     *(.text.entry)
@@ -13,14 +13,12 @@ SECTIONS
   .data : { *(.data) }
 
   .sdata : {
-    _gp = . + 0x800;
+    _gp = .;
     *(.srodata.cst16) *(.srodata.cst8) *(.srodata.cst4) *(.srodata.cst2)
     *(.srodata*)
     *(.sdata .sdata.* .gnu.linkonce.s.*)
   }
 
-  . = 0x80000000;
-
   /* bss segment */
   .sbss : {
     *(.sbss .sbss.* .gnu.linkonce.sb.*)
@@ -32,4 +30,3 @@ SECTIONS
   _end = .;
   _heap_end = .;
 }
-