hikptool/0016-hikptool-fix-compiling-specifications-check-problem.patch

31 lines
862 B
Diff
Raw Normal View History

From 834b2fe48984703a41aceb2307b8604b93d0e6e8 Mon Sep 17 00:00:00 2001
From: veega <zhuweijia@huawei.com>
Date: Thu, 1 Jun 2023 09:56:39 +0800
Subject: [PATCH] hikptool: fix compiling specifications check problem
delete -g option for release vesion and add compile option: -Wextra
-fno-common -std=gnu11 -Wfloat-equal
Signed-off-by: veega <zhuweijia@huawei.com>
---
CMakeLists.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6a396e7..174dd8f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,8 @@
project(hikptool C)
-set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O2 -fPIC -fPIE -Wall")
+set(CMAKE_C_FLAGS
+ "${CMAKE_C_FLAGS} -O2 -fPIC -fPIE -Wall -Wextra -fno-common -std=gnu11 -Wfloat-equal")
set(CMAKE_SKIP_RPATH TRUE)
macro(get_header_dir_recurse HEADER_DIR_LIST)
--
2.25.1