libcxx: Add package
[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_LIBCXX
201                         bool "libc++"
202
203                 config USE_LIBSTDCXX
204                         bool "libstdc++"
205         endchoice
206
207         comment "Hardening build options"
208
209         config PKG_CHECK_FORMAT_SECURITY
210                 bool
211                 prompt "Enable gcc format-security"
212                 default y
213                 help
214                   Add -Wformat -Werror=format-security to the CFLAGS.  You can disable
215                   this per package by adding PKG_CHECK_FORMAT_SECURITY:=0 in the package
216                   Makefile.
217
218         config PKG_ASLR_PIE
219                 bool
220                 prompt "User space ASLR PIE compilation"
221                 select BUSYBOX_DEFAULT_PIE
222                 default n
223                 help
224                   Add -fPIC to CFLAGS and -specs=hardened-build-ld to LDFLAGS.
225                   This enables package build as Position Independent Executables (PIE)
226                   to protect against "return-to-text" attacks. This belongs to the
227                   feature of Address Space Layout Randomisation (ASLR), which is
228                   implemented by the kernel and the ELF loader by randomising the
229                   location of memory allocations. This makes memory addresses harder
230                   to predict when an attacker is attempting a memory-corruption exploit.
231                   You can disable this per package by adding PKG_ASLR_PIE:=0 in the package
232                   Makefile.
233
234         choice
235                 prompt "User space Stack-Smashing Protection"
236                 depends on USE_MUSL
237                 default PKG_CC_STACKPROTECTOR_REGULAR
238                 help
239                   Enable GCC Stack Smashing Protection (SSP) for userspace applications
240                 config PKG_CC_STACKPROTECTOR_NONE
241                         bool "None"
242                 config PKG_CC_STACKPROTECTOR_REGULAR
243                         bool "Regular"
244                         select GCC_LIBSSP if !USE_MUSL
245                         depends on KERNEL_CC_STACKPROTECTOR_REGULAR
246                 config PKG_CC_STACKPROTECTOR_STRONG
247                         bool "Strong"
248                         select GCC_LIBSSP if !USE_MUSL
249                         depends on KERNEL_CC_STACKPROTECTOR_STRONG
250         endchoice
251
252         choice
253                 prompt "Kernel space Stack-Smashing Protection"
254                 default KERNEL_CC_STACKPROTECTOR_REGULAR
255                 depends on USE_MUSL || !(x86_64 || i386)
256                 help
257                   Enable GCC Stack-Smashing Protection (SSP) for the kernel
258                 config KERNEL_CC_STACKPROTECTOR_NONE
259                         bool "None"
260                 config KERNEL_CC_STACKPROTECTOR_REGULAR
261                         bool "Regular"
262                 config KERNEL_CC_STACKPROTECTOR_STRONG
263                         bool "Strong"
264         endchoice
265
266         config  KERNEL_STACKPROTECTOR
267                 bool
268                 default KERNEL_CC_STACKPROTECTOR_REGULAR || KERNEL_CC_STACKPROTECTOR_STRONG
269
270         config  KERNEL_STACKPROTECTOR_STRONG
271                 bool
272                 default KERNEL_CC_STACKPROTECTOR_STRONG
273
274         choice
275                 prompt "Enable buffer-overflows detection (FORTIFY_SOURCE)"
276                 default PKG_FORTIFY_SOURCE_1
277                 help
278                   Enable the _FORTIFY_SOURCE macro which introduces additional
279                   checks to detect buffer-overflows in the following standard library
280                   functions: memcpy, mempcpy, memmove, memset, strcpy, stpcpy,
281                   strncpy, strcat, strncat, sprintf, vsprintf, snprintf, vsnprintf,
282                   gets.  "Conservative" (_FORTIFY_SOURCE set to 1) only introduces
283                   checks that shouldn't change the behavior of conforming programs,
284                   while "aggressive" (_FORTIFY_SOURCES set to 2) some more checking is
285                   added, but some conforming programs might fail.
286                 config PKG_FORTIFY_SOURCE_NONE
287                         bool "None"
288                 config PKG_FORTIFY_SOURCE_1
289                         bool "Conservative"
290                 config PKG_FORTIFY_SOURCE_2
291                         bool "Aggressive"
292         endchoice
293
294         choice
295                 prompt "Enable RELRO protection"
296                 default PKG_RELRO_FULL
297                 help
298                   Enable a link-time protection known as RELRO (Relocation Read Only)
299                   which helps to protect from certain type of exploitation techniques
300                   altering the content of some ELF sections. "Partial" RELRO makes the
301                   .dynamic section not writeable after initialization, introducing
302                   almost no performance penalty, while "full" RELRO also marks the GOT
303                   as read-only at the cost of initializing all of it at startup.
304                 config PKG_RELRO_NONE
305                         bool "None"
306                 config PKG_RELRO_PARTIAL
307                         bool "Partial"
308                 config PKG_RELRO_FULL
309                         bool "Full"
310         endchoice
311
312 endmenu