Commit d89f4194 authored by Tristan Gingold's avatar Tristan Gingold

risc-v/ram.ld.S: align data segment size

to avoid errors while converting bin to vhd
parent 6dff78a3
Pipeline #4836 passed with stage
in 3 minutes and 45 seconds
......@@ -64,11 +64,11 @@ SECTIONS
*(.sdata)
*(.sdata.*)
*(.gnu.linkonce.s.*)
. = ALIGN(4);
} > ram
/* Bounds of data segment. Be sure the end is aligned. */
_fdata = ADDR(.data);
. = ALIGN(4);
_edata = .;
/*--------------------------------------------------------------------*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment