aboutsummaryrefslogtreecommitdiff
path: root/ld/ldm88kr.sc
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-09-03 21:12:23 +0000
committerSteve Chamberlain <steve@cygnus>1991-09-03 21:12:23 +0000
commit81003d7e1aa94e8be0436bfff9bf4c116b7cb734 (patch)
treecd7bc1c7e56c60a7b9156648098799b34e90508b /ld/ldm88kr.sc
parent30104b16c32c5173e72221394a6319de81fd9581 (diff)
downloadgdb-81003d7e1aa94e8be0436bfff9bf4c116b7cb734.zip
gdb-81003d7e1aa94e8be0436bfff9bf4c116b7cb734.tar.gz
gdb-81003d7e1aa94e8be0436bfff9bf4c116b7cb734.tar.bz2
Initial revision
Diffstat (limited to 'ld/ldm88kr.sc')
-rwxr-xr-xld/ldm88kr.sc20
1 files changed, 20 insertions, 0 deletions
diff --git a/ld/ldm88kr.sc b/ld/ldm88kr.sc
new file mode 100755
index 0000000..a3b39fe
--- /dev/null
+++ b/ld/ldm88kr.sc
@@ -0,0 +1,20 @@
+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]
+ }
+}