aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Svärd <jonny.svaerd@arm.com>2023-04-28 16:08:12 +0200
committerJonny Svärd <jonny.svaerd@arm.com>2023-05-08 12:54:04 +0200
commit9197443579fc3444d17cf97096979b909d517ea1 (patch)
treec9caa7e50d1a93c96e4967f4850d69bab637a2ab
parent229d7a0983b142821c6d0ca5a557020468a6f9eb (diff)
downloadethos-u-core-platform-9197443579fc3444d17cf97096979b909d517ea1.tar.gz
Remove LSTM kernel relocation for gcc builds
Syncs better with the scatter file Change-Id: Idd82b84897c3f20d4a696ca770084f123bd74f7c
-rw-r--r--targets/corstone-300/platform.ld8
1 files changed, 4 insertions, 4 deletions
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 <open-source-office@arm.com>
*
* 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