hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

hare+libc.sc (307B)


      1 SECTIONS {
      2 	.libc_init_array : {
      3 		PROVIDE(__libc_init_array_start = .);
      4 		KEEP(*(.init_array))
      5 		PROVIDE(__libc_init_array_end = .);
      6 	}
      7 } INSERT AFTER .dynamic;
      8 
      9 SECTIONS {
     10 	.test_array : {
     11 		PROVIDE(__test_array_start = .);
     12 		KEEP(*(.test_array*))
     13 		PROVIDE(__test_array_end = .);
     14 	}
     15 } INSERT AFTER .bss;