config: remove unused GCC_VERSION_4_8 config symbols
[oweals/openwrt.git] / config / Config-build.in
1 # Copyright (C) 2006-2013 OpenWrt.org
2 # Copyright (C) 2016 LEDE Project
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 menu "Global build settings"
9
10         config JSON_ADD_IMAGE_INFO
11                 bool "Create JSON info files per build image"
12                 default BUILDBOT
13                 help
14                   The JSON info files contain information about the device and
15                   build images, stored next to the firmware images.
16
17         config ALL_NONSHARED
18                 bool "Select all target specific packages by default"
19                 select ALL_KMODS
20                 default BUILDBOT
21
22         config ALL_KMODS
23                 bool "Select all kernel module packages by default"
24
25         config ALL
26                 bool "Select all userspace packages by default"
27                 select ALL_KMODS
28                 select ALL_NONSHARED
29
30         config BUILDBOT
31                 bool "Set build defaults for automatic builds (e.g. via buildbot)"
32                 default n
33                 help
34                   This option changes several defaults to be more suitable for
35                   automatic builds. This includes the following changes:
36                   - Deleting build directories after compiling (to save space)
37                   - Enabling per-device rootfs support
38                   ...
39
40         config SIGNED_PACKAGES
41                 bool "Cryptographically signed package lists"
42                 default y
43
44         config SIGNATURE_CHECK
45                 bool "Enable signature checking in opkg"
46                 default SIGNED_PACKAGES
47
48         comment "General build options"
49
50         config TESTING_KERNEL
51                 bool "Use the testing kernel version"
52                 depends on HAS_TESTING_KERNEL
53                 default n
54                 help
55                   If the target supports a newer kernel version than the default,
56                   you can use this config option to enable it
57
58
59         config DISPLAY_SUPPORT
60                 bool "Show packages that require graphics support (local or remote)"
61                 default n
62
63         config BUILD_PATENTED
64                 default n
65                 bool "Compile with support for patented functionality"
66                 help
67                   When this option is disabled, software which provides patented functionality
68                   will not be built.  In case software provides optional support for patented
69                   functionality, this optional support will get disabled for this package.
70
71         config BUILD_NLS
72                 default n
73                 bool "Compile with full language support"
74                 help
75                   When this option is enabled, packages are built with the full versions of
76                   iconv and GNU gettext instead of the default OpenWrt stubs. If uClibc is
77                   used, it is also built with locale support.
78
79         config SHADOW_PASSWORDS
80                 bool
81                 default y
82
83         config CLEAN_IPKG
84                 bool
85                 prompt "Remove ipkg/opkg status data files in final images"
86                 default n
87                 help
88                   This removes all ipkg/opkg status data files from the target directory
89                   before building the root filesystem.
90
91         config IPK_FILES_CHECKSUMS
92                 bool
93                 prompt "Record files checksums in package metadata"
94                 default n
95                 help
96                   This makes file checksums part of package metadata. It increases size
97                   but provides you with pkg_check command to check for flash coruptions.
98
99         config INCLUDE_CONFIG
100                 bool "Include build configuration in firmware" if DEVEL
101                 default n
102                 help
103                   If enabled, config.buildinfo will be stored in /etc/build.config of firmware.
104
105         config COLLECT_KERNEL_DEBUG
106                 bool
107                 prompt "Collect kernel debug information"
108                 select KERNEL_DEBUG_INFO
109                 default BUILDBOT
110                 help
111                   This collects debugging symbols from the kernel and all compiled modules.
112                   Useful for release builds, so that kernel issues can be debugged offline
113                   later.
114
115         menu "Kernel build options"
116
117         source "config/Config-kernel.in"
118
119         endmenu
120
121         comment "Package build options"
122
123         config DEBUG
124                 bool
125                 prompt "Compile packages with debugging info"
126                 default n
127                 help
128                   Adds -g3 to the CFLAGS.
129
130         config IPV6
131                 bool
132                 prompt "Enable IPv6 support in packages"
133                 default y
134                 help
135                   Enables IPv6 support in kernel (builtin) and packages.
136
137         comment "Stripping options"
138
139         choice
140                 prompt "Binary stripping method"
141                 default USE_STRIP   if EXTERNAL_TOOLCHAIN
142                 default USE_STRIP   if USE_GLIBC
143                 default USE_SSTRIP
144                 help
145                   Select the binary stripping method you wish to use.
146
147                 config NO_STRIP
148                         bool "none"
149                         help
150                           This will install unstripped binaries (useful for native
151                           compiling/debugging).
152
153                 config USE_STRIP
154                         bool "strip"
155                         help
156                           This will install binaries stripped using strip from binutils.
157
158
159                 config USE_SSTRIP
160                         bool "sstrip"
161                         depends on !USE_GLIBC
162                         help
163                           This will install binaries stripped using sstrip.
164         endchoice
165
166         config STRIP_ARGS
167                 string
168                 prompt "Strip arguments"
169                 depends on USE_STRIP
170                 default "--strip-unneeded --remove-section=.comment --remove-section=.note" if DEBUG
171                 default "--strip-all"
172                 help
173                   Specifies arguments passed to the strip command when stripping binaries.
174
175         config STRIP_KERNEL_EXPORTS
176                 bool "Strip unnecessary exports from the kernel image"
177                 help
178                   Reduces kernel size by stripping unused kernel exports from the kernel
179                   image.  Note that this might make the kernel incompatible with any kernel
180                   modules that were not selected at the time the kernel image was created.
181
182         config USE_MKLIBS
183                 bool "Strip unnecessary functions from libraries"
184                 help
185                   Reduces libraries to only those functions that are necessary for using all
186                   selected packages (including those selected as <M>).  Note that this will
187                   make the system libraries incompatible with most of the packages that are
188                   not selected during the build process.
189
190         choice
191                 prompt "Preferred standard C++ library"
192                 default USE_LIBSTDCXX if USE_GLIBC
193                 default USE_UCLIBCXX
194                 help
195                   Select the preferred standard C++ library for all packages that support this.
196
197                 config USE_UCLIBCXX
198                         bool "uClibc++"
199
200                 config USE_LIBSTDCXX
201                         bool "libstdc++"
202         endchoice
203
204         comment "Hardening build options"
205
206         config PKG_CHECK_FORMAT_SECURITY
207                 bool
208                 prompt "Enable gcc format-security"
209                 default y
210                 help
211                   Add -Wformat -Werror=format-security to the CFLAGS.  You can disable
212                   this per package by adding PKG_CHECK_FORMAT_SECURITY:=0 in the package
213                   Makefile.
214
215         config PKG_ASLR_PIE
216                 bool
217                 prompt "User space ASLR PIE compilation"
218                 select BUSYBOX_DEFAULT_PIE
219                 default n
220                 help
221                   Add -fPIC to CFLAGS and -specs=hardened-build-ld to LDFLAGS.
222                   This enables package build as Position Independent Executables (PIE)
223                   to protect against "return-to-text" attacks. This belongs to the
224                   feature of Address Space Layout Randomisation (ASLR), which is
225                   implemented by the kernel and the ELF loader by randomising the
226                   location of memory allocations. This makes memory addresses harder
227                   to predict when an attacker is attempting a memory-corruption exploit.
228                   You can disable this per package by adding PKG_ASLR_PIE:=0 in the package
229                   Makefile.
230
231         choice
232                 prompt "User space Stack-Smashing Protection"
233                 depends on USE_MUSL
234                 default PKG_CC_STACKPROTECTOR_REGULAR
235                 help
236                   Enable GCC Stack Smashing Protection (SSP) for userspace applications
237                 config PKG_CC_STACKPROTECTOR_NONE
238                         bool "None"
239                 config PKG_CC_STACKPROTECTOR_REGULAR
240                         bool "Regular"
241                         select GCC_LIBSSP if !USE_MUSL
242                         depends on KERNEL_CC_STACKPROTECTOR_REGULAR
243                 config PKG_CC_STACKPROTECTOR_STRONG
244                         bool "Strong"
245                         select GCC_LIBSSP if !USE_MUSL
246                         depends on KERNEL_CC_STACKPROTECTOR_STRONG
247         endchoice
248
249         choice
250                 prompt "Kernel space Stack-Smashing Protection"
251                 default KERNEL_CC_STACKPROTECTOR_REGULAR
252                 depends on USE_MUSL || !(x86_64 || i386)
253                 help
254                   Enable GCC Stack-Smashing Protection (SSP) for the kernel
255                 config KERNEL_CC_STACKPROTECTOR_NONE
256                         bool "None"
257                 config KERNEL_CC_STACKPROTECTOR_REGULAR
258                         bool "Regular"
259                 config KERNEL_CC_STACKPROTECTOR_STRONG
260                         bool "Strong"
261         endchoice
262
263         config  KERNEL_STACKPROTECTOR
264                 bool
265                 default KERNEL_CC_STACKPROTECTOR_REGULAR || KERNEL_CC_STACKPROTECTOR_STRONG
266
267         config  KERNEL_STACKPROTECTOR_STRONG
268                 bool
269                 default KERNEL_CC_STACKPROTECTOR_STRONG
270
271         choice
272                 prompt "Enable buffer-overflows detection (FORTIFY_SOURCE)"
273                 default PKG_FORTIFY_SOURCE_1
274                 help
275                   Enable the _FORTIFY_SOURCE macro which introduces additional
276                   checks to detect buffer-overflows in the following standard library
277                   functions: memcpy, mempcpy, memmove, memset, strcpy, stpcpy,
278                   strncpy, strcat, strncat, sprintf, vsprintf, snprintf, vsnprintf,
279                   gets.  "Conservative" (_FORTIFY_SOURCE set to 1) only introduces
280                   checks that shouldn't change the behavior of conforming programs,
281                   while "aggressive" (_FORTIFY_SOURCES set to 2) some more checking is
282                   added, but some conforming programs might fail.
283                 config PKG_FORTIFY_SOURCE_NONE
284                         bool "None"
285                 config PKG_FORTIFY_SOURCE_1
286                         bool "Conservative"
287                 config PKG_FORTIFY_SOURCE_2
288                         bool "Aggressive"
289         endchoice
290
291         choice
292                 prompt "Enable RELRO protection"
293                 default PKG_RELRO_FULL
294                 help
295                   Enable a link-time protection known as RELRO (Relocation Read Only)
296                   which helps to protect from certain type of exploitation techniques
297                   altering the content of some ELF sections. "Partial" RELRO makes the
298                   .dynamic section not writeable after initialization, introducing
299                   almost no performance penalty, while "full" RELRO also marks the GOT
300                   as read-only at the cost of initializing all of it at startup.
301                 config PKG_RELRO_NONE
302                         bool "None"
303                 config PKG_RELRO_PARTIAL
304                         bool "Partial"
305                 config PKG_RELRO_FULL
306                         bool "Full"
307         endchoice
308
309 endmenu