diff options
Diffstat (limited to 'ld/ldgldUr.script')
-rwxr-xr-x | ld/ldgldUr.script | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ld/ldgldUr.script b/ld/ldgldUr.script new file mode 100755 index 0000000..3871454 --- /dev/null +++ b/ld/ldgldUr.script @@ -0,0 +1,31 @@ + +SEARCH_DIR(/lib) +SEARCH_DIR(/usr/lib) +SEARCH_DIR(/usr/local/lib) +SECTIONS +{ + .text 0: + { + CREATE_OBJECT_SYMBOLS + *(.text) + } + .data SIZEOF(.text) + ADDR(.text) : + { + *(.data) + ___DTOR_LIST__ = . ; + LONG((___CTOR_LIST__ - .) / 4 -2) + *(___DTOR_LIST__) + LONG(0) + ___CTOR_LIST__ = . ; + LONG((___end_list__ - .) / 4 -2) + *(___CTOR_LIST__) + LONG(0) + ___end_list__ = . ; + } + .bss SIZEOF(.data) + ADDR(.data) : + { + *(.bss) + [COMMON] + } +} + |