summaryrefslogtreecommitdiff
path: root/scripts/cmake/platforms
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/cmake/platforms')
-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
/**