summaryrefslogtreecommitdiff
path: root/scripts/cmake
diff options
context:
space:
mode:
authorKshitij Sisodia <kshitij.sisodia@arm.com>2024-05-28 15:15:17 +0100
committerKshitij Sisodia <kshitij.sisodia@arm.com>2024-05-31 13:16:27 +0100
commit69f66169704b4f669b26b01edc4ab3ebaf6d87ee (patch)
tree3ba3a4ebc6a06a2086bd60c0655b4b7a61d578ca /scripts/cmake
parent6b342a20277e73f697c25212b6ea9a8aa7d56f6e (diff)
downloadml-embedded-evaluation-kit-main.tar.gz
MLECO-4725: Updating to 24.05 componentsHEAD24.05-rc1main
Updating submodules to pinned 24.05 components. * core-platform: 24.05 tag * core-driver: 24.05 tag * cmsis-nn: v6.0.0 tag * cmsis-dsp: v1.15.0 (no change) * cmsis: 51f8f89612c8330c0116479cfe3a2cb04c390e2b * tensorflow: 8e22946b3faa51564df5dd9194f7540b2694892c Vela compiler (fetched from PyPi) version updated to 3.12. Change-Id: Ibf4a5412368f303db1be9e7ab32504b0daac9c68 Signed-off-by: Kshitij Sisodia <kshitij.sisodia@arm.com>
Diffstat (limited to 'scripts/cmake')
-rw-r--r--scripts/cmake/platforms/mps3/sse-300/mps3-sse-300-debug.ld8
-rw-r--r--scripts/cmake/platforms/simple_platform/simple_platform_debug.ld8
2 files changed, 12 insertions, 4 deletions
diff --git a/scripts/cmake/platforms/mps3/sse-300/mps3-sse-300-debug.ld b/scripts/cmake/platforms/mps3/sse-300/mps3-sse-300-debug.ld
index 35f59f6..8a3c672 100644
--- a/scripts/cmake/platforms/mps3/sse-300/mps3-sse-300-debug.ld
+++ b/scripts/cmake/platforms/mps3/sse-300/mps3-sse-300-debug.ld
@@ -1,5 +1,6 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021, 2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021, 2023-2024 Arm Limited and/or its
+ * affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -85,7 +86,8 @@ SECTIONS
*Profiler*.obj
*lcd*.obj
*timing_adapter.c.obj
- *s4*.o)
+ *s4*.o
+ *cp-demangle.o)
.text*)
KEEP(*(.init))
@@ -211,6 +213,8 @@ SECTIONS
. = ALIGN(4);
*s4*.o (*.text*) /* Temporary solution to move s4 operations to DDR. */
. = ALIGN(4);
+ *cp-demangle.o (*.text*) /* from stdc++ lib */
+ . = ALIGN(4);
} > DDR AT > DDR
/**
diff --git a/scripts/cmake/platforms/simple_platform/simple_platform_debug.ld b/scripts/cmake/platforms/simple_platform/simple_platform_debug.ld
index dbedb8e..d3364f0 100644
--- a/scripts/cmake/platforms/simple_platform/simple_platform_debug.ld
+++ b/scripts/cmake/platforms/simple_platform/simple_platform_debug.ld
@@ -1,5 +1,6 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021,2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021,2023-2024 Arm Limited and/or its
+ * affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -78,7 +79,8 @@ SECTIONS
*lcd*.obj
*Profiler*.obj
*timing_adapter.c.obj
- *s4*.o)
+ *s4*.o
+ *cp-demangle.o)
.text*)
KEEP(*(.init))
@@ -204,6 +206,8 @@ SECTIONS
. = ALIGN(4);
*s4*.o (*.text*) /* Temporary solution to move s4 operations to DDR. */
. = ALIGN(4);
+ *cp-demangle.o (*.text*) /* from stdc++ lib */
+ . = ALIGN(4);
} > DDR AT > DDR
/**