This commit moves the app_data_alignment.ld scripts under arch/arc sub-directory, as it is not not used at all in ARM builds. The script is still used for ARC, whose v2 MPU also has the reuquirement for power-of-two size alignment. Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
10 lines
189 B
Plaintext
10 lines
189 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Set initial alignment to the 32 byte minimum for all MPUs */
|
|
_app_data_align = 32;
|
|
. = ALIGN(32);
|