aboutsummaryrefslogtreecommitdiff
path: root/ld/ldgldUr.sc
diff options
context:
space:
mode:
Diffstat (limited to 'ld/ldgldUr.sc')
-rwxr-xr-xld/ldgldUr.sc24
1 files changed, 0 insertions, 24 deletions
diff --git a/ld/ldgldUr.sc b/ld/ldgldUr.sc
deleted file mode 100755
index e7d9b44..0000000
--- a/ld/ldgldUr.sc
+++ /dev/null
@@ -1,24 +0,0 @@
-
-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)
- CONSTRUCTORS
- ___end_list__ = . ;
- }
- .bss SIZEOF(.data) + ADDR(.data) :
- {
- *(.bss)
- [COMMON]
- }
-}
-