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

Commit fbeb7370 authored by Mike Frysinger's avatar Mike Frysinger Committed by Bryan Wu
Browse files

Blackfin arch: parse input sections properly when using -ffunction-sections/-fdata-sections

parent 1ffe6646
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ SECTIONS
		__text = .;
		_text = .;
		__stext = .;
		*(.text.*)
		TEXT_TEXT
		SCHED_TEXT
		LOCK_TEXT
@@ -73,6 +74,7 @@ SECTIONS
		. = ALIGN(THREAD_SIZE);
		*(.data.init_task)
		DATA_DATA
		*(.data.*)
		CONSTRUCTORS

		. = ALIGN(32);
@@ -164,7 +166,7 @@ SECTIONS
	{
		. = ALIGN(4);
		___bss_start = .;
		*(.bss)
		*(.bss .bss.*)
		*(COMMON)
		. = ALIGN(4);
		___bss_stop = .;