aboutsummaryrefslogtreecommitdiff
path: root/ld/ld-gld-r.script
diff options
context:
space:
mode:
Diffstat (limited to 'ld/ld-gld-r.script')
-rwxr-xr-xld/ld-gld-r.script20
1 files changed, 0 insertions, 20 deletions
diff --git a/ld/ld-gld-r.script b/ld/ld-gld-r.script
deleted file mode 100755
index a3b39fe..0000000
--- a/ld/ld-gld-r.script
+++ /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]
- }
-}