File tree Expand file tree Collapse file tree 3 files changed +18
-18
lines changed
targets/TARGET_WIZNET/TARGET_W7500x
TARGET_WIZwiki_W7500/device/TOOLCHAIN_GCC_ARM
TARGET_WIZwiki_W7500ECO/device/TOOLCHAIN_GCC_ARM
TARGET_WIZwiki_W7500P/device/TOOLCHAIN_GCC_ARM Expand file tree Collapse file tree 3 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -85,41 +85,41 @@ SECTIONS
85
85
*(vtable)
86
86
*(.data*)
87
87
88
- . = ALIGN (4 );
88
+ . = ALIGN (8 );
89
89
/* preinit data */
90
90
PROVIDE_HIDDEN (__preinit_array_start = .);
91
91
KEEP(*(.preinit_array))
92
92
PROVIDE_HIDDEN (__preinit_array_end = .);
93
93
94
- . = ALIGN (4 );
94
+ . = ALIGN (8 );
95
95
/* init data */
96
96
PROVIDE_HIDDEN (__init_array_start = .);
97
97
KEEP(*(SORT(.init_array.*)))
98
98
KEEP(*(.init_array))
99
99
PROVIDE_HIDDEN (__init_array_end = .);
100
100
101
101
102
- . = ALIGN (4 );
102
+ . = ALIGN (8 );
103
103
/* finit data */
104
104
PROVIDE_HIDDEN (__fini_array_start = .);
105
105
KEEP(*(SORT(.fini_array.*)))
106
106
KEEP(*(.fini_array))
107
107
PROVIDE_HIDDEN (__fini_array_end = .);
108
108
109
109
KEEP(*(.jcr*))
110
- . = ALIGN (4 );
110
+ . = ALIGN (8 );
111
111
/* All data end */
112
112
__data_end__ = .;
113
113
114
114
} > RAM
115
115
116
116
.bss :
117
117
{
118
- . = ALIGN (4 );
118
+ . = ALIGN (8 );
119
119
__bss_start__ = .;
120
120
*(.bss*)
121
121
*(COMMON)
122
- . = ALIGN (4 );
122
+ . = ALIGN (8 );
123
123
__bss_end__ = .;
124
124
} > RAM
125
125
Original file line number Diff line number Diff line change @@ -85,41 +85,41 @@ SECTIONS
85
85
*(vtable)
86
86
*(.data*)
87
87
88
- . = ALIGN (4 );
88
+ . = ALIGN (8 );
89
89
/* preinit data */
90
90
PROVIDE_HIDDEN (__preinit_array_start = .);
91
91
KEEP(*(.preinit_array))
92
92
PROVIDE_HIDDEN (__preinit_array_end = .);
93
93
94
- . = ALIGN (4 );
94
+ . = ALIGN (8 );
95
95
/* init data */
96
96
PROVIDE_HIDDEN (__init_array_start = .);
97
97
KEEP(*(SORT(.init_array.*)))
98
98
KEEP(*(.init_array))
99
99
PROVIDE_HIDDEN (__init_array_end = .);
100
100
101
101
102
- . = ALIGN (4 );
102
+ . = ALIGN (8 );
103
103
/* finit data */
104
104
PROVIDE_HIDDEN (__fini_array_start = .);
105
105
KEEP(*(SORT(.fini_array.*)))
106
106
KEEP(*(.fini_array))
107
107
PROVIDE_HIDDEN (__fini_array_end = .);
108
108
109
109
KEEP(*(.jcr*))
110
- . = ALIGN (4 );
110
+ . = ALIGN (8 );
111
111
/* All data end */
112
112
__data_end__ = .;
113
113
114
114
} > RAM
115
115
116
116
.bss :
117
117
{
118
- . = ALIGN (4 );
118
+ . = ALIGN (8 );
119
119
__bss_start__ = .;
120
120
*(.bss*)
121
121
*(COMMON)
122
- . = ALIGN (4 );
122
+ . = ALIGN (8 );
123
123
__bss_end__ = .;
124
124
} > RAM
125
125
Original file line number Diff line number Diff line change @@ -85,41 +85,41 @@ SECTIONS
85
85
*(vtable)
86
86
*(.data*)
87
87
88
- . = ALIGN (4 );
88
+ . = ALIGN (8 );
89
89
/* preinit data */
90
90
PROVIDE_HIDDEN (__preinit_array_start = .);
91
91
KEEP(*(.preinit_array))
92
92
PROVIDE_HIDDEN (__preinit_array_end = .);
93
93
94
- . = ALIGN (4 );
94
+ . = ALIGN (8 );
95
95
/* init data */
96
96
PROVIDE_HIDDEN (__init_array_start = .);
97
97
KEEP(*(SORT(.init_array.*)))
98
98
KEEP(*(.init_array))
99
99
PROVIDE_HIDDEN (__init_array_end = .);
100
100
101
101
102
- . = ALIGN (4 );
102
+ . = ALIGN (8 );
103
103
/* finit data */
104
104
PROVIDE_HIDDEN (__fini_array_start = .);
105
105
KEEP(*(SORT(.fini_array.*)))
106
106
KEEP(*(.fini_array))
107
107
PROVIDE_HIDDEN (__fini_array_end = .);
108
108
109
109
KEEP(*(.jcr*))
110
- . = ALIGN (4 );
110
+ . = ALIGN (8 );
111
111
/* All data end */
112
112
__data_end__ = .;
113
113
114
114
} > RAM
115
115
116
116
.bss :
117
117
{
118
- . = ALIGN (4 );
118
+ . = ALIGN (8 );
119
119
__bss_start__ = .;
120
120
*(.bss*)
121
121
*(COMMON)
122
- . = ALIGN (4 );
122
+ . = ALIGN (8 );
123
123
__bss_end__ = .;
124
124
} > RAM
125
125
You can’t perform that action at this time.
0 commit comments