Last change
on this file since 1939 was 1, checked in by vboxsync, 55 years ago |
import
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
349 bytes
|
Line | |
---|
1 | OUTPUT_FORMAT("elf64-ia64-little")
|
---|
2 |
|
---|
3 | OUTPUT_ARCH(ia64)
|
---|
4 |
|
---|
5 | ENTRY(_start)
|
---|
6 | SECTIONS {
|
---|
7 | . = 0;
|
---|
8 | __gp = .;
|
---|
9 | _text = . ;
|
---|
10 | .text : {
|
---|
11 | *(.text)
|
---|
12 | }
|
---|
13 | /DISCARD/ : {
|
---|
14 | *(.comment)
|
---|
15 | *(.note)
|
---|
16 | *(.hash)
|
---|
17 | *(.data)
|
---|
18 | *(.sbss)
|
---|
19 | *(.bss)
|
---|
20 | *(.dynstr)
|
---|
21 | *(.dynsym)
|
---|
22 | *(.IA_64.unwind)
|
---|
23 | *(.IA_64.unwind_info)
|
---|
24 | *(.IA64_unwind)
|
---|
25 | *(.IA64_unwind_info)
|
---|
26 | *(.dynamic)
|
---|
27 | }
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.