From 9197443579fc3444d17cf97096979b909d517ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonny=20Sv=C3=A4rd?= Date: Fri, 28 Apr 2023 16:08:12 +0200 Subject: Remove LSTM kernel relocation for gcc builds Syncs better with the scatter file Change-Id: Idd82b84897c3f20d4a696ca770084f123bd74f7c --- targets/corstone-300/platform.ld | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'targets') diff --git a/targets/corstone-300/platform.ld b/targets/corstone-300/platform.ld index ebf7021..8d77329 100644 --- a/targets/corstone-300/platform.ld +++ b/targets/corstone-300/platform.ld @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2022 Arm Limited. All rights reserved. + * SPDX-FileCopyrightText: Copyright 2009-2023 Arm Limited and/or its affiliates * * SPDX-License-Identifier: Apache-2.0 * @@ -135,7 +135,7 @@ SECTIONS .text : { KEEP(*(.vectors)) - *(EXCLUDE_FILE(lstm_eval.*) .text*) + *(.text*) KEEP(*(.init)) KEEP(*(.fini)) @@ -219,7 +219,8 @@ SECTIONS { __data_start__ = .; *(vtable) - *(EXCLUDE_FILE(lstm_eval.*) .data .data.*) + *(.data) + *(.data.*) . = ALIGN(4); /* preinit data */ @@ -288,7 +289,6 @@ SECTIONS .sram.data : { __sram_data_start__ = .; *(.sram.data) - lstm_eval.*(.text* .data .data.*) __sram_data_end__ = .; } > BRAM AT >DDR :rom_dram -- cgit v1.2.1