aboutsummaryrefslogtreecommitdiff
path: root/ld/ldgldUr.sc
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-09-03 21:01:03 +0000
committerSteve Chamberlain <steve@cygnus>1991-09-03 21:01:03 +0000
commit01bc4918d7d850eac440398dbf68807587aeb9a0 (patch)
tree6321f4372c75e98bf52d45e299e21169b2275357 /ld/ldgldUr.sc
parentc67056970aca5cc403e8fde116512055a4beb29c (diff)
downloadgdb-01bc4918d7d850eac440398dbf68807587aeb9a0.zip
gdb-01bc4918d7d850eac440398dbf68807587aeb9a0.tar.gz
gdb-01bc4918d7d850eac440398dbf68807587aeb9a0.tar.bz2
Initial revision
Diffstat (limited to 'ld/ldgldUr.sc')
-rwxr-xr-xld/ldgldUr.sc24
1 files changed, 24 insertions, 0 deletions
diff --git a/ld/ldgldUr.sc b/ld/ldgldUr.sc
new file mode 100755
index 0000000..e7d9b44
--- /dev/null
+++ b/ld/ldgldUr.sc
@@ -0,0 +1,24 @@
+
+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]
+ }
+}
+