1 # Copyright (C) 2014 Free Software Foundation, Inc. 2 # 3 # Copying and distribution of this file, with or without modification, 4 # are permitted in any medium without royalty provided the copyright 5 # notice and this notice are preserved. 6 7 cat <<EOF 8 /* Copyright (C) 2014 Free Software Foundation, Inc. 9 10 Copying and distribution of this script, with or without modification, 11 are permitted in any medium without royalty provided the copyright 12 notice and this notice are preserved. */ 13 14 SECTIONS 15 { 16 .text : 17 { 18 ${GLD_STYLE+ CREATE_OBJECT_SYMBOLS} 19 *(.text) 20 ${RELOCATING+ _etext = .}; 21 ${CONSTRUCTING+${COFF_CTORS}} 22 } 23 .data : 24 { 25 *(.data) 26 ${CONSTRUCTING+CONSTRUCTORS} 27 ${RELOCATING+ _edata = .}; 28 } 29 .bss : 30 { 31 ${RELOCATING+ _bss_start = .}; 32 *(.bss) 33 *(COMMON) 34 ${RELOCATING+ _end = .}; 35 } 36 } 37 EOF 38