summaryrefslogtreecommitdiffstats
path: root/ld/ld-gld960.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-gld960.script
parentaa802a324642d093973ad207a07351f5c354751e (diff)
downloadppe42-binutils-da56abdf49af3e87f4b8e105606b0eee7c84b7f1.tar.gz
ppe42-binutils-da56abdf49af3e87f4b8e105606b0eee7c84b7f1.zip
Initial revision
Diffstat (limited to 'ld/ld-gld960.script')
-rwxr-xr-xld/ld-gld960.script23
1 files changed, 23 insertions, 0 deletions
diff --git a/ld/ld-gld960.script b/ld/ld-gld960.script
new file mode 100755
index 0000000000..1c40a732e7
--- /dev/null
+++ b/ld/ld-gld960.script
@@ -0,0 +1,23 @@
+SECTIONS
+{
+ .text :
+ {
+ CREATE_OBJECT_SYMBOLS
+ *(.text)
+ _etext = .;
+ }
+
+ .data SIZEOF(.text) + ADDR(.text):
+ {
+
+ *(.data)
+ _edata = .;
+ }
+ .bss SIZEOF(.data) + ADDR(.data) :
+ {
+ _bss_start = .;
+ *(.bss)
+ [COMMON]
+ _end = . ;
+ }
+}
OpenPOWER on IntegriCloud