blob: 9481865258fbd1596b2144e05d9fc36b82e30bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 2024, Alejandro Colomar <alx@kernel.org>
# SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
ifndef MAKEFILE_CONFIGURE_BUILD_DEPENDS_GCC_CC_INCLUDED
MAKEFILE_CONFIGURE_BUILD_DEPENDS_GCC_CC_INCLUDED := 1
include $(MAKEFILEDIR)/configure/build-depends/coreutils/echo.mk
include $(MAKEFILEDIR)/configure/build-depends/grep/grep.mk
include $(MAKEFILEDIR)/configure/build-depends/sed/sed.mk
CC := gcc
CC_VENDOR := \
$(shell \
$(CC) -v 2>&1 \
| $(SED) -n '1p;$$p' \
| $(SED) '/gcc version/s/.*/gcc/' \
| $(SED) '/clang version/s/.*/clang/' \
| $(SED) '/Apple LLVM version/s/.*/clang/' \
| $(GREP) -e '^gcc$$' -e '^clang$$' \
|| $(ECHO) unknown; \
)
COMMON_CFLAGS := \
-O3 \
-flto \
-Wall \
-Wextra \
-Werror \
-Wstrict-prototypes \
-Wdeclaration-after-statement \
-Wno-reserved-identifier \
-Wno-unused-macros \
-Wno-error=unused-parameter \
-Wno-error=sign-compare \
-Wno-error=format \
-Wno-error=uninitialized
GCC_CFLAGS := -fanalyzer
CLANG_CFLAGS := \
-Weverything \
-Wno-unsafe-buffer-usage
DEFAULT_CFLAGS := $(COMMON_CFLAGS)
ifeq ($(CC_VENDOR),gcc)
DEFAULT_CFLAGS += $(GCC_CFLAGS)
else ifeq ($(CC_VENDOR),clang)
DEFAULT_CFLAGS += $(CLANG_CFLAGS)
endif
EXTRA_CFLAGS :=
CFLAGS := $(DEFAULT_CFLAGS) $(EXTRA_CFLAGS)
endif # include guard
|