You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
296 B

  1. #include <seccomp-loader.h>
  2. SECTIONS
  3. {
  4. . = TEXT_ADDRESS;
  5. .text : { *(.text .stub .text.* .gnu.linkonce.t.*) *(.rodata .rodata.*) }
  6. . = DATA_BSS_ADDRESS;
  7. .data : { *(.data* .sdata* .data.* .sdata.* .gnu.linkonce.d.*) }
  8. .bss : { *(.dynbss) *(.bss* .bss.* .sbss .sbss.* .gnu.linkonce.b.*) }
  9. }