SECTIONS {
	 .data :
    {
      *(".data")
      *(".data$")
      *(".rodata")
		 __CTORS_START = .;
      *(".ctors")
      *(".ctor")
      __CTORS_END = .;
      __DTORS_START = .;
      *(".dtors")
      *(".dtor")
      __DTORS_END = .;
      *(".got")
      *(".got.plt")
      *(".eh_frame")
      *(".eh_fram")
      *(".jcr")
    }
}