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