aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Grohmann <davide.grohmann@arm.com>2022-05-10 11:18:56 +0200
committerDavide Grohmann <davide.grohmann@arm.com>2022-05-17 08:27:28 +0200
commitdd596046fc9e932e37b2b1afccc2f89e30917187 (patch)
treee0be28b1be43867fa1a7cf49ca63f09a6012d666
parenta8832ccaa0c5183f70a0c2aee8ae86e7bb5418ff (diff)
downloadethos-u-core-platform-dd596046fc9e932e37b2b1afccc2f89e30917187.tar.gz
Silence irrelevant compiler notes about GCC ABI incompatibilities
There are ABI changes between GCC 6.x and 7.1 that make them incompatible, but that is not relevant here since all software is compiled with only one GCC version. Change-Id: If82f874162404bdedc9c2e93c3a8c7a6d648fde0
-rw-r--r--cmake/toolchain/arm-none-eabi-gcc.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/toolchain/arm-none-eabi-gcc.cmake b/cmake/toolchain/arm-none-eabi-gcc.cmake
index ec10b2f..ce54cd5 100644
--- a/cmake/toolchain/arm-none-eabi-gcc.cmake
+++ b/cmake/toolchain/arm-none-eabi-gcc.cmake
@@ -105,4 +105,6 @@ add_compile_options(
-Wunused
-Wno-redundant-decls
+
+ -Wno-psabi
)