blob: 02105cf5670340f4041470f77959a6a25df7ac86 [file] [log] [blame]
Wyatt Heplerae222dc2020-10-14 10:46:27 -07001# Copyright 2020 The Pigweed Authors
Alexei Frolov1a82c142019-10-31 17:37:12 -07002#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070015import("//build_overrides/pigweed.gni")
Rob Mohr49de4922019-12-10 20:10:41 -080016
Wyatt Heplera2970c52021-02-02 14:47:22 -080017import("$dir_pw_build/python.gni")
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070018import("$dir_pw_docgen/docs.gni")
Wyatt Hepler8bd4fb02021-05-03 15:30:58 -070019import("target_types.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070020
Wyatt Hepler0a6f7632020-10-29 09:08:19 -070021# IMPORTANT: The compilation flags in this file must be kept in sync with
22# the CMake flags pw_build/CMakeLists.txt.
23
Alexei Frolov844ff0f2020-05-06 12:15:29 -070024config("colorize_output") {
25 cflags = [
26 # Colorize output. Ninja's Clang invocation disables color by default.
27 "-fdiagnostics-color",
Wyatt Heplerb9db09f2020-01-27 17:40:08 -080028 ]
Alexei Frolov844ff0f2020-05-06 12:15:29 -070029 ldflags = cflags
Wyatt Heplerb9db09f2020-01-27 17:40:08 -080030}
31
32config("debugging") {
33 # Enable debug symbol generation. This has no effect on final code size.
34 cflags = [ "-g" ]
35}
36
Alexei Frolov844ff0f2020-05-06 12:15:29 -070037config("extra_debugging") {
38 # Include things like macro expansion in debug info.
39 cflags = [ "-g3" ]
40}
41
42# Optimization levels
43config("optimize_debugging") {
44 cflags = [ "-Og" ]
45 ldflags = cflags
46}
47
48config("optimize_speed") {
49 cflags = [ "-O2" ]
50 ldflags = cflags
51}
52
53config("optimize_more_speed") {
54 cflags = [ "-O3" ]
55 ldflags = cflags
56}
57
58config("optimize_size") {
59 cflags = [ "-Os" ]
60 ldflags = cflags
61}
62
Alexei Frolov1a82c142019-10-31 17:37:12 -070063# Standard compiler flags to reduce output binary size.
64config("reduced_size") {
65 cflags = [
66 "-fno-common",
67 "-fno-exceptions",
68 "-ffunction-sections",
69 "-fdata-sections",
70 ]
71 cflags_cc = [ "-fno-rtti" ]
72}
73
74config("strict_warnings") {
75 cflags = [
76 "-Wall",
77 "-Wextra",
Ewout van Bekkumb4f95982020-10-15 11:10:51 -070078 "-Wimplicit-fallthrough",
Ewout van Bekkum7a436e02020-10-16 11:49:32 -070079 "-Wcast-qual",
Ewout van Bekkume4d7b692020-10-15 13:12:30 -070080 "-Wundef",
Ewout van Bekkumc9759dc2020-10-15 21:22:08 -070081 "-Wpointer-arith",
Keir Mierle243e32a2019-11-05 10:29:26 -080082
Wyatt Hepler979890d2019-11-06 17:17:45 -080083 # Make all warnings errors, except for the exemptions below.
84 "-Werror",
85 "-Wno-error=cpp", # preprocessor #warning statement
86 "-Wno-error=deprecated-declarations", # [[deprecated]] attribute
Alexei Frolov1a82c142019-10-31 17:37:12 -070087 ]
Wyatt Hepler1919c642019-12-06 10:06:13 -080088 cflags_cc = [ "-Wnon-virtual-dtor" ]
Alexei Frolov1a82c142019-10-31 17:37:12 -070089}
90
Ewout van Bekkumcc9ef832021-04-08 08:51:16 -070091# Thread safety warnings are only supported by Clang.
92config("clang_thread_safety_warnings") {
93 cflags = [ "-Wthread-safety" ]
94 defines = [ "_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS=1" ]
95}
96
Armando Montanez888370d2020-05-01 18:29:22 -070097# This config contains warnings that we don't necessarily recommend projects
98# enable, but are enabled for upstream Pigweed for maximum project
99# compatibility.
100config("extra_strict_warnings") {
Ewout van Bekkum2c622832020-10-16 13:49:57 -0700101 cflags = [
102 "-Wshadow",
103 "-Wredundant-decls",
104 ]
Wyatt Hepler5a14a662021-03-08 11:22:02 -0800105 cflags_c = [ "-Wstrict-prototypes" ]
Armando Montanez888370d2020-05-01 18:29:22 -0700106}
107
Wyatt Hepler818e3312020-01-16 14:19:21 -0800108config("cpp11") {
109 cflags_cc = [ "-std=c++11" ]
110}
111
112config("cpp14") {
113 cflags_cc = [ "-std=c++14" ]
114}
115
Alexei Frolov1a82c142019-10-31 17:37:12 -0700116config("cpp17") {
Wyatt Hepler979890d2019-11-06 17:17:45 -0800117 cflags_cc = [
118 "-std=c++17",
119
120 # Allow uses of the register keyword, which may appear in C headers.
121 "-Wno-register",
122 ]
Alexei Frolov1a82c142019-10-31 17:37:12 -0700123}
124
Wyatt Hepler8bd4fb02021-05-03 15:30:58 -0700125# This group is linked into all pw_executable, pw_static_library, and
126# pw_shared_library targets. This makes it possible to ensure symbols are
127# defined without a dependency on them.
128#
129# pw_build_LINK_DEPS should only be used when necessary. For example,
130# pw_assert relies on pw_build_LINK_DEPS to avoid circular dependencies
131# in GN. In almost all other cases, build targets should explicitly depend on
132# the other targets they use.
133group("link_deps") {
134 deps = pw_build_LINK_DEPS
135}
136
Wyatt Heplerae222dc2020-10-14 10:46:27 -0700137# This empty target is used as the default value for module configurations.
138# Projects may set pw_build_DEFAULT_MODULE_CONFIG to a different GN target that
139# overrides modules' configuration options via macro definitions or a header
140# forcibly included with `-include`.
141group("empty") {
142}
143
Wyatt Heplera2970c52021-02-02 14:47:22 -0800144# Requirements for the pw_python_package lint targets.
145pw_python_requirements("python_lint") {
146 requirements = [
Wyatt Hepleraf853ea2021-03-09 19:09:54 -0800147 "build",
Wyatt Heplera2970c52021-02-02 14:47:22 -0800148 "mypy==0.800",
149 "pylint==2.6.0",
150 ]
151}
152
Rob Mohr49de4922019-12-10 20:10:41 -0800153pw_doc_group("docs") {
Wyatt Heplerb3ea9802021-02-23 09:46:09 -0800154 sources = [
155 "docs.rst",
156 "python.rst",
157 ]
Rob Mohr49de4922019-12-10 20:10:41 -0800158}