aboutsummaryrefslogtreecommitdiff
path: root/ld/ld-gld68k.script
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-04-14 03:22:02 +0000
committerSteve Chamberlain <steve@cygnus>1991-04-14 03:22:02 +0000
commitda56abdf49af3e87f4b8e105606b0eee7c84b7f1 (patch)
treed8e71062b59ed75eb67cfe72820aa95899747365 /ld/ld-gld68k.script
parentaa802a324642d093973ad207a07351f5c354751e (diff)
downloadgdb-da56abdf49af3e87f4b8e105606b0eee7c84b7f1.zip
gdb-da56abdf49af3e87f4b8e105606b0eee7c84b7f1.tar.gz
gdb-da56abdf49af3e87f4b8e105606b0eee7c84b7f1.tar.bz2
Initial revision
Diffstat (limited to 'ld/ld-gld68k.script')
-rwxr-xr-xld/ld-gld68k.script33
1 files changed, 33 insertions, 0 deletions
diff --git a/ld/ld-gld68k.script b/ld/ld-gld68k.script
new file mode 100755
index 0000000..65ebc72
--- /dev/null
+++ b/ld/ld-gld68k.script
@@ -0,0 +1,33 @@
+SEARCH_DIR(/lib)
+SEARCH_DIR(/usr/lib)
+SEARCH_DIR(/usr/local/lib)
+__DYNAMIC = 0;
+SECTIONS
+{
+ .text 0x2020 BLOCK(0x2000):
+ {
+ CREATE_OBJECT_SYMBOLS
+ *(.text)
+ _etext = ALIGN( 0x2000);
+ }
+ .data ALIGN(0x20000) :
+ {
+ *(.data)
+ ___DTOR_LIST__ = . ;
+ LONG((___CTOR_LIST__ - .)/4 -2)
+ *(___DTOR_LIST__)
+ LONG(0)
+ ___CTOR_LIST__ = . ;
+ LONG((_edata - .)/4 -2)
+ *(___CTOR_LIST__)
+ LONG(0)
+ _edata = .;
+ }
+ .bss SIZEOF(.data) + ADDR(.data) :
+ {
+ *(.bss)
+ [COMMON]
+ _end = .;
+ }
+}
+