From 879352b7f32addf256677e5fa8ab55dcba000757 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Mon, 31 Jan 2022 19:32:47 +0100 Subject: [PATCH] build system: remove -Wno-format flag for RISC-V targets --- components/riscv/project_include.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/riscv/project_include.cmake b/components/riscv/project_include.cmake index 98d8425094..eae28cd414 100644 --- a/components/riscv/project_include.cmake +++ b/components/riscv/project_include.cmake @@ -1,5 +1,3 @@ -set(compile_options "-Wno-error=format=" - "-nostartfiles" - "-Wno-format") +set(compile_options "-nostartfiles") idf_build_set_property(COMPILE_OPTIONS "${compile_options}" APPEND)