/* This is the script used to tell GNU ld how to generate DXE2 files. Copyright (C) 2000 Andrew Zabolotny Usage of this library is not restricted in any way. The full license text can be found in the file dxe.txt. */ OUTPUT_FORMAT("coff-go32") FORCE_COMMON_ALLOCATION SECTIONS { .text : { *(.text) _djgpp_first_ctor = . ; *(.ctor) _djgpp_last_ctor = . ; _djgpp_first_dtor = . ; *(.dtor) _djgpp_last_dtor = . ; *(.data) *(.eh_fram) *(.gcc_exc) *(.bss) *(COMMON) } }