blob: b8e5d18a6156cf0000e1adc382a2389171466555 [file] [log] [blame]
Eric Andersen2d523c22004-10-09 01:06:03 +00001#
2
Peter Korsgaard6a53b722011-02-02 14:53:23 +01003mainmenu "Buildroot $BR2_VERSION Configuration"
Eric Andersen2d523c22004-10-09 01:06:03 +00004
5config BR2_HAVE_DOT_CONFIG
6 bool
7 default y
8
Bernhard Reutner-Fischerf5b8cd42007-09-25 11:37:31 +00009config BR2_VERSION
10 string
Yann E. MORIN56c68bc2010-10-31 17:35:14 +010011 option env="BR2_VERSION_FULL"
Bernhard Reutner-Fischerf5b8cd42007-09-25 11:37:31 +000012
Francois Perrad1d4104f2012-07-18 15:59:09 +020013config BR2_HOSTARCH
14 string
15 option env="HOSTARCH"
16
Thomas Petazzonia4239f72013-12-05 20:11:10 +010017config BR2_EXTERNAL
18 string
19 option env="BR2_EXTERNAL"
20
Arnout Vandecappelle12825f72015-12-31 01:34:13 +010021# Hidden config symbols for packages to check system gcc version
22config BR2_HOST_GCC_VERSION
23 string
24 option env="HOST_GCC_VERSION"
25
Bernd Kuhls8fce6d72016-03-19 21:25:35 +010026config BR2_HOST_GCC_AT_LEAST_4_6
27 bool
28 default y if BR2_HOST_GCC_VERSION = "4 6"
29
Arnout Vandecappelle12825f72015-12-31 01:34:13 +010030config BR2_HOST_GCC_AT_LEAST_4_7
31 bool
32 default y if BR2_HOST_GCC_VERSION = "4 7"
Bernd Kuhls8fce6d72016-03-19 21:25:35 +010033 select BR2_HOST_GCC_AT_LEAST_4_6
Arnout Vandecappelle12825f72015-12-31 01:34:13 +010034
35config BR2_HOST_GCC_AT_LEAST_4_8
36 bool
37 default y if BR2_HOST_GCC_VERSION = "4 8"
38 select BR2_HOST_GCC_AT_LEAST_4_7
39
40config BR2_HOST_GCC_AT_LEAST_4_9
41 bool
42 default y if BR2_HOST_GCC_VERSION = "4 9"
43 select BR2_HOST_GCC_AT_LEAST_4_8
44
45config BR2_HOST_GCC_AT_LEAST_5
46 bool
47 default y if BR2_HOST_GCC_VERSION = "5"
48 select BR2_HOST_GCC_AT_LEAST_4_9
49
Maxime Hadjinlianaac3d2b2014-02-18 00:37:12 +010050# Hidden boolean selected by packages in need of Java in order to build
51# (example: xbmc)
Maxime Hadjinlian0721c712014-02-19 16:33:50 +010052config BR2_NEEDS_HOST_JAVA
Maxime Hadjinlianaac3d2b2014-02-18 00:37:12 +010053 bool
54
Maxime Hadjinlian8f9da282014-05-04 00:45:44 +020055# Hidden boolean selected by packages in need of javac in order to build
56# (example: classpath)
57config BR2_NEEDS_HOST_JAVAC
58 bool
59
60# Hidden boolean selected by packages in need of jar in order to build
61# (example: classpath)
62config BR2_NEEDS_HOST_JAR
63 bool
64
Thomas Petazzoni70d60372012-12-29 06:14:49 +000065# Hidden boolean selected by pre-built packages for x86, when they
66# need to run on x86-64 machines (example: pre-built external
67# toolchains, binary tools like SAM-BA, etc.).
68config BR2_HOSTARCH_NEEDS_IA32_LIBS
69 bool
70
Thomas Petazzoni0e4bc502013-11-11 17:47:25 +010071# Hidden boolean selected by packages that need to build 32 bits
72# binaries with the host compiler, even on 64 bits build machines (e.g
73# bootloaders).
74config BR2_HOSTARCH_NEEDS_IA32_COMPILER
75 bool
76
Thomas Petazzoni79ee3c12012-11-03 08:27:59 +000077source "arch/Config.in"
Bernhard Reutner-Fischer7d8a59b2007-07-08 16:28:54 +000078
Eric Andersen8e5fb3f2004-12-11 13:01:10 +000079menu "Build options"
80
Thomas Petazzoni15929262010-04-10 22:55:01 +020081menu "Commands"
82
Eric Andersen2d523c22004-10-09 01:06:03 +000083config BR2_WGET
Eric Andersen8e5fb3f2004-12-11 13:01:10 +000084 string "Wget command"
Peter Korsgaard6871b162010-11-04 19:16:43 +010085 default "wget --passive-ftp -nd -t 3"
Eric Andersen2d523c22004-10-09 01:06:03 +000086
Maxime Petazzonicf711112010-09-02 12:09:45 +020087config BR2_SVN
88 string "Subversion (svn) command"
89 default "svn"
Eric Andersene30cf262005-01-23 11:20:30 +000090
Maxime Petazzonicf711112010-09-02 12:09:45 +020091config BR2_BZR
92 string "Bazaar (bzr) command"
93 default "bzr"
Sven Neumanndf03cda2009-08-07 11:57:54 +020094
Ulf Samuelsson85f54fb2007-08-24 05:31:07 +000095config BR2_GIT
Maxime Petazzonicf711112010-09-02 12:09:45 +020096 string "Git command"
97 default "git"
Ulf Samuelsson85f54fb2007-08-24 05:31:07 +000098
Gustavo Zacarias15eb1fa2013-09-11 09:12:04 -030099config BR2_CVS
100 string "CVS command"
101 default "cvs"
102
David Wagner2690e762011-09-29 21:57:46 +0200103config BR2_LOCALFILES
104 string "Local files retrieval command"
105 default "cp"
106
Thomas De Schampheleirec61788f2011-10-19 09:25:40 +0200107config BR2_SCP
108 string "Secure copy (scp) command"
109 default "scp"
110
111config BR2_SSH
112 string "Secure shell (ssh) command"
113 default "ssh"
114
Thomas De Schampheleiref694c072011-10-19 09:25:47 +0200115config BR2_HG
116 string "Mercurial (hg) command"
117 default "hg"
118
Bernhard Reutner-Fischer859b9132006-10-01 15:07:45 +0000119config BR2_ZCAT
120 string "zcat command"
Bernhard Reutner-Fischera9612bf2007-03-09 08:26:10 +0000121 default "gzip -d -c"
Bernhard Reutner-Fischer859b9132006-10-01 15:07:45 +0000122 help
123 Command to be used to extract a gzip'ed file to stdout.
124 zcat is identical to gunzip -c except that the former may
125 not be available on your system.
Bernhard Reutner-Fischera9612bf2007-03-09 08:26:10 +0000126 Default is "gzip -d -c"
127 Other possible values include "gunzip -c" or "zcat".
Bernhard Reutner-Fischer6e2823c2006-11-17 15:43:51 +0000128
129config BR2_BZCAT
130 string "bzcat command"
131 default "bzcat"
132 help
133 Command to be used to extract a bzip2'ed file to stdout.
134 bzcat is identical to bunzip2 -c except that the former may
135 not be available on your system.
136 Default is "bzcat"
137 Other possible values include "bunzip2 -c" or "bzip2 -d -c".
Bernhard Reutner-Fischer859b9132006-10-01 15:07:45 +0000138
Allan W. Nielsen177b4b42011-05-10 08:17:05 +0200139config BR2_XZCAT
140 string "xzcat command"
141 default "xzcat"
142 help
143 Command to be used to extract a xz'ed file to stdout.
144 Default is "xzcat"
145
Bernhard Reutner-Fischerce90aae2005-12-10 14:59:02 +0000146config BR2_TAR_OPTIONS
147 string "Tar options"
Bernhard Reutner-Fischer7df4de62005-12-10 15:36:43 +0000148 default ""
149 help
150 Options to pass to tar when extracting the sources.
151 E.g. " -v --exclude='*.svn*'" to exclude all .svn internal files
152 and to be verbose.
Bernhard Reutner-Fischerce90aae2005-12-10 14:59:02 +0000153
Thomas Petazzoni15929262010-04-10 22:55:01 +0200154endmenu
155
Arnout Vandecappelle (Essensium/Mind)4e0170d2013-02-06 21:50:57 +0000156config BR2_DEFCONFIG_FROM_ENV
157 string
158 option env="BR2_DEFCONFIG"
159
160config BR2_DEFCONFIG
161 string "Location to save buildroot config"
162 default BR2_DEFCONFIG_FROM_ENV if BR2_DEFCONFIG_FROM_ENV != ""
163 default "$(CONFIG_DIR)/defconfig"
164 help
165 When running 'make savedefconfig', the defconfig file will be saved
166 in this location.
167
Mike Frysinger59a63a92005-10-01 00:35:24 +0000168config BR2_DL_DIR
169 string "Download dir"
H Hartley Sweetenbe695dc2009-09-23 08:46:52 +0200170 default "$(TOPDIR)/dl"
Mike Frysinger59a63a92005-10-01 00:35:24 +0000171 help
172 Directory to store all the source files that we need to fetch.
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100173 If the Linux shell environment has defined the BR2_DL_DIR
Ulf Samuelsson67050e12007-08-21 01:28:12 +0000174 environment variable, then this overrides this configuration item.
Mike Frysinger59a63a92005-10-01 00:35:24 +0000175
H Hartley Sweetenbe695dc2009-09-23 08:46:52 +0200176 The default is $(TOPDIR)/dl
Bernhard Reutner-Fischer4b0d5a82007-09-26 21:12:38 +0000177
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300178config BR2_HOST_DIR
179 string "Host dir"
180 default "$(BASE_DIR)/host"
181 help
182 Directory to store all the binary files that are built for the host.
183 This includes the cross compilation toolchain when building the
184 internal buildroot toolchain.
185
186 The default is $(BASE_DIR)/host
187
Thomas Petazzoni80080072010-12-05 21:52:37 +0100188menu "Mirrors and Download locations"
189
190config BR2_PRIMARY_SITE
191 string "Primary download site"
192 default ""
193 help
194 Primary site to download from. If this option is set then buildroot
195 will try to download package source first from this site and try the
196 default if the file is not found.
Jérôme Pouiller4a9d9802015-11-18 10:03:25 +0100197 Valid URIs are:
198 - URIs recognized by $(WGET)
199 - local URIs of the form file://absolutepath
200 - scp URIs of the form scp://[user@]host:path.
Thomas Petazzoni80080072010-12-05 21:52:37 +0100201
Thomas De Schampheleire5a83e082012-06-22 07:37:03 +0200202config BR2_PRIMARY_SITE_ONLY
203 bool "Only allow downloads from primary download site"
204 depends on BR2_PRIMARY_SITE != ""
205 help
206 If this option is enabled, downloads will only be attempted
207 from the primary download site. Other locations, like the
208 package's official download location or the backup download
209 site, will not be considered. Therefore, if the package is
210 not present on the primary site, the download fails.
211
212 This is useful for project developers who want to ensure
213 that the project can be built even if the upstream tarball
214 locations disappear.
215
216if !BR2_PRIMARY_SITE_ONLY
217
Thomas Petazzoni80080072010-12-05 21:52:37 +0100218config BR2_BACKUP_SITE
219 string "Backup download site"
Peter Seiderer4a9eb202014-02-21 23:33:36 +0100220 default "http://sources.buildroot.net"
Thomas Petazzoni80080072010-12-05 21:52:37 +0100221 help
222 Backup site to download from. If this option is set then buildroot
223 will fall back to download package sources from here if the
224 normal location fails.
225
Thomas Petazzoni80080072010-12-05 21:52:37 +0100226config BR2_KERNEL_MIRROR
227 string "Kernel.org mirror"
Alexey Brodkinde76cb72016-05-23 18:36:53 +0300228 default "https://cdn.kernel.org/pub"
Thomas Petazzoni80080072010-12-05 21:52:37 +0100229 help
Alexey Brodkinde76cb72016-05-23 18:36:53 +0300230 kernel.org is mirrored on a number of servers around the
231 world. The following allows you to select your preferred
232 mirror. By default, a CDN is used, which automatically
233 redirects to a mirror geographically close to you.
Thomas Petazzoni80080072010-12-05 21:52:37 +0100234
235 Have a look on the kernel.org site for a list of mirrors, then enter
236 the URL to the base directory. Examples:
237
238 http://www.XX.kernel.org/pub (XX = country code)
239 http://mirror.aarnet.edu.au/pub/ftp.kernel.org
240
241config BR2_GNU_MIRROR
242 string "GNU Software mirror"
243 default "http://ftp.gnu.org/pub/gnu"
244 help
245 GNU has multiple software mirrors scattered around the world.
246 The following allows you to select your preferred mirror.
247
248 Have a look on the gnu.org site for a list of mirrors, then enter
249 the URL to the base directory. Examples:
250
251 http://ftp.gnu.org/pub/gnu
252 http://mirror.aarnet.edu.au/pub/gnu
253
Francois Perrad72afb292014-01-11 16:42:07 +0100254config BR2_LUAROCKS_MIRROR
255 string "LuaRocks mirror"
Francois Perrad0b8411a2014-07-25 20:21:24 +0200256 default "http://rocks.moonscript.org"
Francois Perrad72afb292014-01-11 16:42:07 +0100257 help
258 LuaRocks repository.
259
260 See http://luarocks.org
261
Francois Perrad9fbb1692014-02-23 15:17:16 +0100262config BR2_CPAN_MIRROR
263 string "CPAN mirror (Perl packages)"
Yann E. MORIN32567d12014-07-19 12:09:19 +0200264 default "http://cpan.metacpan.org"
Francois Perrad9fbb1692014-02-23 15:17:16 +0100265 help
266 CPAN (Comprehensive Perl Archive Network) is a repository
267 of Perl packages. It has multiple software mirrors scattered
268 around the world. This option allows you to select a mirror.
269
270 The list of mirrors is available at:
271 http://search.cpan.org/mirror
272
Yann E. MORIN3318a5a2015-07-14 09:42:40 +0200273endif
274
Thomas Petazzoni80080072010-12-05 21:52:37 +0100275endmenu
Thomas Petazzoniaa41d372010-04-10 22:55:38 +0200276
Eric Andersen8e5fb3f2004-12-11 13:01:10 +0000277config BR2_JLEVEL
Nathan Lynch5016aa02012-06-16 09:37:17 +0000278 int "Number of jobs to run simultaneously (0 for auto)"
279 default "0"
Eric Andersen8e5fb3f2004-12-11 13:01:10 +0000280 help
Nathan Lynch5016aa02012-06-16 09:37:17 +0000281 Number of jobs to run simultaneously. If 0, determine
282 automatically according to number of CPUs on the host
283 system.
Bernhard Reutner-Fischer93ab6d32007-01-28 12:03:58 +0000284
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100285config BR2_CCACHE
286 bool "Enable compiler cache"
287 help
288 This option will enable the use of ccache, a compiler
289 cache. It will cache the result of previous builds to speed
Danomi Manchegodd79f2d2014-04-30 22:05:07 -0400290 up future builds. By default, the cache is stored in
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100291 $HOME/.buildroot-ccache.
292
Thomas Petazzonif044e032012-03-07 20:26:50 +0100293 Note that Buildroot does not try to invalidate the cache
294 contents when the compiler changes in an incompatible
295 way. Therefore, if you make a change to the compiler version
296 and/or configuration, you are responsible for purging the
297 ccache cache by removing the $HOME/.buildroot-ccache
298 directory.
299
Danomi Manchegodd79f2d2014-04-30 22:05:07 -0400300if BR2_CCACHE
301
Thomas De Schampheleire43329072012-05-16 21:39:28 +0200302config BR2_CCACHE_DIR
303 string "Compiler cache location"
Thomas De Schampheleire43329072012-05-16 21:39:28 +0200304 default "$(HOME)/.buildroot-ccache"
305 help
306 Where ccache should store cached files.
307
Danomi Manchegodd79f2d2014-04-30 22:05:07 -0400308config BR2_CCACHE_INITIAL_SETUP
309 string "Compiler cache initial setup"
310 help
311 Initial ccache settings to apply, such as --max-files or --max-size.
312
313 For example, if your project is known to require more space than the
314 default max cache size, then you might want to increase the cache size
315 to a suitable amount using the -M (--max-size) option.
316
317 The string you specify here is passed verbatim to ccache. Refer to
318 ccache documentation for more details.
319
320 These initial settings are applied after ccache has been compiled.
321
Arnout Vandecappelle1e97b272015-10-04 16:25:32 +0100322config BR2_CCACHE_USE_BASEDIR
323 bool "Use relative paths"
324 default y
325 help
326 Allow ccache to convert absolute paths within the output
327 directory into relative paths.
328
329 During the build, many -I include directives are given with
330 an absolute path. These absolute paths end up in the hashes
331 that are computed by ccache. Therefore, when you build from a
332 different directory, the hash will be different and the
333 cached object will not be used.
334
335 To improve cache performance, set this option to y. This
336 allows ccache to rewrite absolute paths within the output
337 directory into relative paths. Note that only paths within
338 the output directory will be rewritten; therefore, if you
339 change BR2_HOST_DIR to point outside the output directory and
340 subsequently move it to a different location, this will lead
341 to cache misses.
342
343 This option has as a result that the debug information in the
344 object files also has only relative paths. Therefore, make
345 sure you cd to the build directory before starting gdb. See
346 the section "COMPILING IN DIFFERENT DIRECTORIES" in the
347 ccache manual for more information.
348
Danomi Manchegodd79f2d2014-04-30 22:05:07 -0400349endif
350
Bernhard Reutner-Fischer7779fd72007-02-09 13:31:55 +0000351config BR2_DEPRECATED
Gustavo Zacarias8515ef02014-09-19 10:41:09 -0300352 bool "Show options and packages that are deprecated or obsolete"
Bernhard Reutner-Fischer7779fd72007-02-09 13:31:55 +0000353 help
Gustavo Zacarias8515ef02014-09-19 10:41:09 -0300354 This option shows outdated/obsolete versions of packages and
355 options that are otherwise hidden.
Eric Andersenba7c48f2004-12-11 10:25:40 +0000356
Thomas De Schampheleireba4ad9d2014-01-03 17:02:50 +0100357if BR2_DEPRECATED
358
Gustavo Zacarias0f1556e2015-03-03 12:52:24 -0300359config BR2_DEPRECATED_SINCE_2015_05
360 bool
361 default y
362
Gustavo Zacarias602692a2015-06-02 14:34:34 -0300363config BR2_DEPRECATED_SINCE_2015_08
364 bool
365 default y
366
Vicente Olivert Riera429a1162015-12-17 16:39:53 +0000367config BR2_DEPRECATED_SINCE_2015_11
368 bool
369 default y
370
Gustavo Zacarias07941f42016-01-15 07:47:46 -0300371config BR2_DEPRECATED_SINCE_2016_02
372 bool
373 default y
374
Gustavo Zacariasbca107e2016-02-22 14:54:57 -0300375config BR2_DEPRECATED_SINCE_2016_05
376 bool
377 default y
378
Thomas De Schampheleireba4ad9d2014-01-03 17:02:50 +0100379endif
380
John Voltz41f6b792008-03-12 13:07:10 +0000381config BR2_ENABLE_DEBUG
382 bool "build packages with debugging symbols"
John Voltz41f6b792008-03-12 13:07:10 +0000383 help
Thomas Petazzonia9a34672012-03-14 23:49:58 +0100384 Build packages with debugging symbols enabled. All libraries
385 and binaries in the 'staging' directory will have debugging
386 symbols, which allows remote debugging even if libraries and
387 binaries are stripped on the target. Whether libraries and
388 binaries are stripped on the target is controlled by the
389 BR2_STRIP_* options below.
John Voltz41f6b792008-03-12 13:07:10 +0000390
391if BR2_ENABLE_DEBUG
392choice
393 prompt "gcc debug level"
394 default BR2_DEBUG_2
395 help
396 Set the debug level for gcc
397
398config BR2_DEBUG_1
399 bool "debug level 1"
400 help
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000401 Debug level 1 produces minimal information, enough
402 for making backtraces in parts of the program that
403 you don't plan to debug. This includes descriptions
John Voltz41f6b792008-03-12 13:07:10 +0000404 of functions and external variables, but no information
405 about local variables and no line numbers.
406
407config BR2_DEBUG_2
408 bool "debug level 2"
409 help
410 The default gcc debug level is 2
411
412config BR2_DEBUG_3
413 bool "debug level 3"
414 help
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000415 Level 3 includes extra information, such as all the
John Voltz41f6b792008-03-12 13:07:10 +0000416 macro definitions present in the program. Some debuggers
417 support macro expansion when you use -g3.
418endchoice
419endif
420
Bernhard Reutner-Fischerbbd251a2007-07-31 18:06:50 +0000421choice
Thomas Petazzonia9a34672012-03-14 23:49:58 +0100422 prompt "strip command for binaries on target"
Bernhard Reutner-Fischerbbd251a2007-07-31 18:06:50 +0000423 default BR2_STRIP_strip
Bernhard Reutner-Fischerbbd251a2007-07-31 18:06:50 +0000424
425config BR2_STRIP_strip
426 bool "strip"
Axel Lin9f2bf302013-09-03 17:39:53 +0800427 depends on !BR2_PACKAGE_HOST_ELF2FLT
Bernhard Reutner-Fischerbbd251a2007-07-31 18:06:50 +0000428 help
Thomas Petazzonia9a34672012-03-14 23:49:58 +0100429 Binaries and libraries in the target filesystem will be
430 stripped using the normal 'strip' command. This allows to
431 save space, mainly by removing debugging symbols. Debugging
432 symbols on the target are needed for native debugging, but
433 not when remote debugging is used.
Ulf Samuelsson85f54fb2007-08-24 05:31:07 +0000434
Bernhard Reutner-Fischerbbd251a2007-07-31 18:06:50 +0000435config BR2_STRIP_none
436 bool "none"
437 help
Thomas Petazzonia9a34672012-03-14 23:49:58 +0100438 Do not strip binaries and libraries in the target
439 filesystem.
Bernhard Reutner-Fischerbbd251a2007-07-31 18:06:50 +0000440endchoice
441
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000442config BR2_STRIP_EXCLUDE_FILES
443 string "executables that should not be stripped"
444 depends on !BR2_STRIP_none
445 default ""
446 help
447 You may specify a space-separated list of binaries and libraries
448 here that should not be stripped on the target.
449
450config BR2_STRIP_EXCLUDE_DIRS
451 string "directories that should be skipped when stripping"
452 depends on !BR2_STRIP_none
453 default ""
454 help
455 You may specify a space-separated list of directories that should
456 be skipped when stripping. Binaries and libraries in these
457 directories will not be touched.
458 The directories should be specified relative to the target directory,
459 without leading slash.
460
John Voltz41f6b792008-03-12 13:07:10 +0000461choice
462 prompt "gcc optimization level"
John Voltz7eb796b2008-03-16 13:26:14 +0000463 default BR2_OPTIMIZE_S
John Voltz923f42a2008-03-12 11:23:11 +0000464 help
John Voltz41f6b792008-03-12 13:07:10 +0000465 Set the optimization level for gcc
466
467config BR2_OPTIMIZE_0
468 bool "optimization level 0"
469 help
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000470 Do not optimize. This is the default.
John Voltz41f6b792008-03-12 13:07:10 +0000471
472config BR2_OPTIMIZE_1
473 bool "optimization level 1"
474 help
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000475 Optimize. Optimizing compilation takes somewhat more time,
476 and a lot more memory for a large function. With -O, the
477 compiler tries to reduce code size and execution time,
478 without performing any optimizations that take a great deal
479 of compilation time. -O turns on the following optimization
480 flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
481 -fcprop-registers -floop-optimize -fif-conversion
482 -fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
483 -ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
John Voltz41f6b792008-03-12 13:07:10 +0000484 -ftree-fre -ftree-ch -funit-at-a-time -fmerge-constants
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000485 -O also turns on -fomit-frame-pointer on machines where doing
John Voltz41f6b792008-03-12 13:07:10 +0000486 so does not interfere with debugging.
487
488config BR2_OPTIMIZE_2
489 bool "optimization level 2"
490 help
491 Optimize even more. GCC performs nearly all supported optimizations
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000492 that do not involve a space-speed tradeoff. The compiler does not
493 perform loop unrolling or function inlining when you specify -O2.
494 As compared to -O, this option increases both compilation time and
495 the performance of the generated code. -O2 turns on all optimization
496 flags specified by -O. It also turns on the following optimization
497 flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
498 -fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
499 -fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
500 -frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
501 -fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
502 -fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
503 -freorder-functions -falign-functions -falign-jumps -falign-loops
John Voltz41f6b792008-03-12 13:07:10 +0000504 -falign-labels -ftree-vrp -ftree-pre
505 Please note the warning under -fgcse about invoking -O2 on programs
506 that use computed gotos.
507
508config BR2_OPTIMIZE_3
509 bool "optimization level 3"
510 help
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000511 Optimize yet more. -O3 turns on all optimizations specified by -O2
512 and also turns on the -finline-functions, -funswitch-loops and
John Voltz41f6b792008-03-12 13:07:10 +0000513 -fgcse-after-reload options.
514
515config BR2_OPTIMIZE_S
516 bool "optimize for size"
517 help
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000518 Optimize for size. -Os enables all -O2 optimizations that do not
John Voltz41f6b792008-03-12 13:07:10 +0000519 typically increase code size. It also performs further optimizations
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000520 designed to reduce code size. -Os disables the following optimization
521 flags: -falign-functions -falign-jumps -falign-loops -falign-labels
John Voltz41f6b792008-03-12 13:07:10 +0000522 -freorder-blocks -freorder-blocks-and-partition -fprefetch-loop-arrays
523 -ftree-vect-loop-version
Peter Korsgaard02a623d2008-08-04 19:07:05 +0000524
John Voltz41f6b792008-03-12 13:07:10 +0000525endchoice
John Voltz923f42a2008-03-12 11:23:11 +0000526
Pascal Huerst09a1a102014-07-31 22:08:55 +0200527config BR2_GOOGLE_BREAKPAD_ENABLE
528 bool "Enable google-breakpad support"
529 select BR2_PACKAGE_GOOGLE_BREAKPAD
530 depends on BR2_INSTALL_LIBSTDCPP
531 depends on BR2_TOOLCHAIN_USES_GLIBC
532 depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS
533 help
534 This option will enable the use of google breakpad, a
535 library and tool suite that allows you to distribute an
536 application to users with compiler-provided debugging
537 information removed, record crashes in compact "minidump"
538 files, send them back to your server and produce C and C++
539 stack traces from these minidumps. Breakpad can also write
540 minidumps on request for programs that have not crashed.
541
542if BR2_GOOGLE_BREAKPAD_ENABLE
543
544config BR2_GOOGLE_BREAKPAD_INCLUDE_FILES
545 string "List of executables and libraries to extract symbols from"
546 default ""
547 help
548 You may specify a space-separated list of binaries and
549 libraries with full paths relative to $(TARGET_DIR) of which
550 debug symbols will be dumped for further use with google
551 breakpad.
552
553 A directory structure that can be used by minidump-stackwalk
554 will be created at:
555
556 $(STAGING_DIR)/usr/share/google-breakpad-symbols
557
558endif
559
Steven Noonand29c7192015-12-27 12:07:31 +0100560choice
Thomas Petazzonic5866be2013-09-02 18:06:36 +0200561 bool "build code with Stack Smashing Protection"
Steven Noonand29c7192015-12-27 12:07:31 +0100562 default BR2_SSP_ALL if BR2_ENABLE_SSP # legacy
Thomas Petazzonic5866be2013-09-02 18:06:36 +0200563 depends on BR2_TOOLCHAIN_HAS_SSP
564 help
Steven Noonand29c7192015-12-27 12:07:31 +0100565 Enable stack smashing protection support using GCC's
566 -fstack-protector option family.
Thomas Petazzonic5866be2013-09-02 18:06:36 +0200567
568 See http://www.linuxfromscratch.org/hints/downloads/files/ssp.txt
Thomas De Schampheleirebed4e272013-11-11 17:23:23 +0100569 for details.
Thomas Petazzonic5866be2013-09-02 18:06:36 +0200570
571 Note that this requires the toolchain to have SSP
572 support. This is always the case for glibc and eglibc
573 toolchain, but is optional in uClibc toolchains.
574
Steven Noonand29c7192015-12-27 12:07:31 +0100575config BR2_SSP_NONE
576 bool "None"
577 help
578 Disable stack-smashing protection.
579
580config BR2_SSP_REGULAR
581 bool "-fstack-protector"
582 help
583 Emit extra code to check for buffer overflows, such as stack
584 smashing attacks. This is done by adding a guard variable to
585 functions with vulnerable objects. This includes functions
586 that call alloca, and functions with buffers larger than 8
587 bytes. The guards are initialized when a function is entered
588 and then checked when the function exits. If a guard check
589 fails, an error message is printed and the program exits.
590
591config BR2_SSP_STRONG
592 bool "-fstack-protector-strong"
593 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
594 help
595 Like -fstack-protector but includes additional functions to be
596 protected - those that have local array definitions, or have
597 references to local frame addresses.
598
599comment "Stack Smashing Protection strong needs a toolchain w/ gcc >= 4.9"
600 depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
601
602config BR2_SSP_ALL
603 bool "-fstack-protector-all"
604 help
605 Like -fstack-protector except that all functions are
606 protected. This option might have a significant performance
607 impact on the compiled binaries.
608
609endchoice
610
611comment "Stack Smashing Protection needs a toolchain w/ SSP"
Thomas Petazzonic5866be2013-09-02 18:06:36 +0200612 depends on !BR2_TOOLCHAIN_HAS_SSP
613
Thomas Petazzoni158001f2014-12-11 23:50:09 +0100614choice
615 bool "libraries"
Thomas Petazzonif1d3e092014-12-11 23:50:11 +0100616 default BR2_SHARED_LIBS if BR2_BINFMT_SUPPORTS_SHARED
Thomas Petazzoni158001f2014-12-11 23:50:09 +0100617 default BR2_STATIC_LIBS if !BR2_BINFMT_SUPPORTS_SHARED
Bernhard Reutner-Fischer3096f342007-06-01 22:16:28 +0000618 help
Thomas Petazzoni158001f2014-12-11 23:50:09 +0100619 Select the type of libraries you want to use on the target.
Bernhard Reutner-Fischer3096f342007-06-01 22:16:28 +0000620
Thomas Petazzoni158001f2014-12-11 23:50:09 +0100621 The default is to build dynamic libraries and use those on
622 the target filesystem, except when the architecture and/or
623 the selected binary format does not support shared
624 libraries.
Alexey Brodkin7d9c0df2014-10-12 18:34:44 +0200625
Thomas Petazzoni158001f2014-12-11 23:50:09 +0100626config BR2_STATIC_LIBS
627 bool "static only"
628 help
629 Build and use only static libraries. No shared libraries
630 will be instaled on the target. This potentially increases
631 your code size and should only be used if you know what you
632 are doing. Note that some packages may not be available when
633 this option is enabled, due to their need for dynamic
634 library support.
635
636config BR2_SHARED_LIBS
637 bool "shared only"
638 depends on BR2_BINFMT_SUPPORTS_SHARED
639 help
640 Build and use only shared libraries. This is the recommended
641 solution as it saves space and build time.
642
643config BR2_SHARED_STATIC_LIBS
644 bool "both static and shared"
645 depends on BR2_BINFMT_SUPPORTS_SHARED
646 help
647 Build both shared and static libraries, but link executables
648 dynamically. While building both shared and static libraries
649 take more time and more disk space, having static libraries
650 may be useful to link some of the applications statically.
651
652endchoice
Alexey Brodkin7d9c0df2014-10-12 18:34:44 +0200653
Bernhard Reutner-Fischer3096f342007-06-01 22:16:28 +0000654
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200655config BR2_PACKAGE_OVERRIDE_FILE
656 string "location of a package override file"
Yann E. MORINeda3d0e2014-01-29 22:48:24 +0100657 default "$(CONFIG_DIR)/local.mk"
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200658 help
659 A package override file is a short makefile that contains
660 variable definitions of the form <pkg>_OVERRIDE_SRCDIR,
661 which allows to tell Buildroot to use an existing directory
662 as the source directory for a particular package. See the
663 Buildroot documentation for more details on this feature.
664
Simon Dawson5538e472013-03-17 23:13:47 +0000665config BR2_GLOBAL_PATCH_DIR
Ryan Barnettbc4f79d2013-12-18 04:25:01 -0600666 string "global patch directories"
Simon Dawson5538e472013-03-17 23:13:47 +0000667 help
Ryan Barnettbc4f79d2013-12-18 04:25:01 -0600668 You may specify a space separated list of one or more directories
669 containing global package patches. For a specific version
670 <packageversion> of a specific package <packagename>, patches are
671 applied as follows:
Simon Dawson5538e472013-03-17 23:13:47 +0000672
Ryan Barnettbc4f79d2013-12-18 04:25:01 -0600673 First, the default Buildroot patch set for the package is applied
674 from the package's directory in Buildroot.
Simon Dawson5538e472013-03-17 23:13:47 +0000675
Ryan Barnettbc4f79d2013-12-18 04:25:01 -0600676 Then for every directory - <global-patch-dir> - that exists in
677 BR2_GLOBAL_PATCH_DIR, if the directory
678 <global-patch-dir>/<packagename>/<packageversion>/ exists, then all
679 *.patch files in this directory will be applied.
Simon Dawson5538e472013-03-17 23:13:47 +0000680
Ryan Barnettbc4f79d2013-12-18 04:25:01 -0600681 Otherwise, if the directory <global-patch-dir>/<packagename> exists,
Simon Dawson5538e472013-03-17 23:13:47 +0000682 then all *.patch files in the directory will be applied.
683
Thomas Petazzoni4ac8f782014-12-10 23:53:57 +0100684menu "Advanced"
685
686config BR2_COMPILER_PARANOID_UNSAFE_PATH
687 bool "paranoid check of library/header paths"
Romain Naour61c88542016-05-15 12:26:00 +0200688 default y
Thomas Petazzoni4ac8f782014-12-10 23:53:57 +0100689 help
690 By default, when this option is disabled, when the Buildroot
691 cross-compiler will encounter an unsafe library or header
692 path (such as /usr/include, or /usr/lib), the compiler will
693 display a warning.
694
695 By enabling this option, this warning is turned into an
696 error, which will completely abort the build when such
697 unsafe paths are encountered.
698
699 Note that this mechanism is available for both the internal
700 toolchain (through gcc and binutils patches) and external
701 toolchain backends (through the external toolchain wrapper).
702
703endmenu
704
Eric Andersen8e5fb3f2004-12-11 13:01:10 +0000705endmenu
Eric Andersen2d523c22004-10-09 01:06:03 +0000706
Bernhard Reutner-Fischer50100392007-09-25 07:55:45 +0000707source "toolchain/Config.in"
708
Thomas Petazzoni6c3e3ad2012-11-03 08:27:58 +0000709source "system/Config.in"
Thomas Petazzonibeb43c72010-12-05 21:52:44 +0100710
Yann E. MORIN24403852013-08-17 22:35:37 +0200711source "linux/Config.in"
Bernhard Reutner-Fischer50100392007-09-25 07:55:45 +0000712
Yann E. MORIN24403852013-08-17 22:35:37 +0200713source "package/Config.in"
Thomas Petazzonid06e8022012-01-28 18:42:49 +0100714
Thomas Petazzoni05852412010-03-10 22:30:06 +0100715source "fs/Config.in"
716
Thomas Petazzoni649b5b92010-03-14 18:20:45 +0100717source "boot/Config.in"
718
Yann E. MORIN24403852013-08-17 22:35:37 +0200719source "package/Config.in.host"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000720
721source "Config.in.legacy"
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100722
Peter Korsgaardf4ea4b92013-12-08 23:21:50 +0100723menu "User-provided options"
724 depends on BR2_EXTERNAL != "support/dummy-external"
725
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100726source "$BR2_EXTERNAL/Config.in"
Peter Korsgaardf4ea4b92013-12-08 23:21:50 +0100727
728endmenu