summaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index 07b4bf36b..c6aad4210 100644
--- a/Config.in
+++ b/Config.in
@@ -9,6 +9,20 @@ config HAVE_DOT_CONFIG
9 bool 9 bool
10 default y 10 default y
11 11
12choice
13 prompt "Target platform"
14 default PLATFORM_POSIX
15 help
16 Target platform you are building busybox for
17
18config PLATFORM_POSIX
19 bool "POSIX"
20
21config PLATFORM_MINGW32
22 bool "MS Windows (MinGW port)"
23
24endchoice
25
12menu "Busybox Settings" 26menu "Busybox Settings"
13 27
14menu "General Configuration" 28menu "General Configuration"
@@ -616,6 +630,17 @@ config LFS
616 cp, mount, tar, and many others. If you want to access files larger 630 cp, mount, tar, and many others. If you want to access files larger
617 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'. 631 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
618 632
633config NOGLOB
634 bool "Turn off MSVCRT argument processing"
635 default y
636 depends on PLATFORM_MINGW32
637 help
638 The Microsoft C Runtime handles the expansion of wildcards on the
639 command line while the BusyBox shell does its own wildcard expansion.
640 For best results when using the shell MSVCRT globbing should be
641 turned off. If you want the BusyBox binary to handle wildcard
642 expansion using the Microsoft C Runtime set this to 'N'.
643
619config CROSS_COMPILER_PREFIX 644config CROSS_COMPILER_PREFIX
620 string "Cross Compiler prefix" 645 string "Cross Compiler prefix"
621 default "" 646 default ""