Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85d98657 authored by Jesper Nilsson's avatar Jesper Nilsson
Browse files

CRIS: Fix alignment problem for older ld



CRISv10 uses a pretty old ld, which does not allow ALIGN(0),
(It becomes . = 0;) so instead we align to 1 byte.

Signed-off-by: default avatarJesper Nilsson <jesper.nilsson@axis.com>
parent 2d495ebc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ SECTIONS
	__init_end = .;

	__data_end = . ;		/* Move to _edata ? */
	BSS_SECTION(0, 0, 0)
	BSS_SECTION(1, 1, 1)

	. =  ALIGN (0x20);
	_end = .;