Changeset 1d9c541 in mainline
- Timestamp:
-
2011-04-13T19:10:01Z
(14 years ago)
- Author:
- Jakub Jermar <jakub@…>
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 18ba2e4f
- Parents:
- af103f4
- Message:
-
Modify the ia64 loader linker script so that not explicitly mentioned
input sections are discarded. Should any section like that be actually
needed, the build will fail during link time with a proper error
message.
-
File:
-
Legend:
- Unmodified
- Added
- Removed
-
raf103f4
|
r1d9c541
|
|
11 | 11 | *(.rodata); |
12 | 12 | *(.rodata.*); |
13 | | *(.data); /* initialized data */ |
| 13 | *(.data .data.*); /* initialized data */ |
14 | 14 | __gp = . ; |
15 | 15 | *(.got .got.*); |
… |
… |
|
20 | 20 | |
21 | 21 | /DISCARD/ : { |
22 | | *(.comment); |
23 | | *(.note*); |
| 22 | *(.*); |
24 | 23 | } |
25 | 24 | } |