Merge pull request #2094 from jesven/fix_zynq7000_ld

fix bss start address in ld file
This commit is contained in:
Bernard Xiong 2018-12-21 15:11:58 +08:00 committed by GitHub
commit 2defcb753c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ SECTIONS
__data_end = .;
. = ALIGN(4);
__bss_start = 0;
__bss_start = __data_end;
.bss :
{
*(.bss)