summaryrefslogtreecommitdiff
path: root/cleopatre/buildroot/toolchain/Config.in.2
diff options
context:
space:
mode:
authorlefranc2008-08-01 09:25:43 +0000
committerlefranc2008-08-01 09:25:43 +0000
commit9a2bcc0b92b392f1f21cd26927515e4d49bc128e (patch)
treed0bd193c764606c4c6e4b4568ef08d0ff3324b72 /cleopatre/buildroot/toolchain/Config.in.2
parentd0cc0304ed6eaf72116743e13e5b3b3cbfd878bb (diff)
- import of buildroot original sources (20080729 version)
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@2704 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cleopatre/buildroot/toolchain/Config.in.2')
-rw-r--r--cleopatre/buildroot/toolchain/Config.in.276
1 files changed, 76 insertions, 0 deletions
diff --git a/cleopatre/buildroot/toolchain/Config.in.2 b/cleopatre/buildroot/toolchain/Config.in.2
new file mode 100644
index 0000000000..d00faab400
--- /dev/null
+++ b/cleopatre/buildroot/toolchain/Config.in.2
@@ -0,0 +1,76 @@
+#
+
+source "toolchain/kernel-headers/Config.in"
+
+if BR2_TOOLCHAIN_SOURCE
+source "toolchain/uClibc/Config.in"
+source "toolchain/binutils/Config.in"
+source "toolchain/gcc/Config.in"
+source "toolchain/ccache/Config.in"
+source "toolchain/gdb/Config.in"
+
+comment "Common Toolchain Options"
+
+source "toolchain/elf2flt/Config.in"
+source "toolchain/mklibs/Config.in"
+source "toolchain/sstrip/Config.in"
+
+config BR2_ENABLE_MULTILIB
+ bool "Enable multilib support?"
+ help
+ Build libraries to support different ABIs.
+
+config BR2_LARGEFILE
+ bool "Enable large file (files > 2 GB) support?"
+ depends on !BR2_cris
+ help
+ Enable large file (files > 2 GB) support
+
+config BR2_INET_IPV6
+ bool "Enable IPv6"
+ help
+ Enable IPv6.
+
+config BR2_INET_RPC
+ bool "Enable RPC"
+ help
+ Enable RPC. RPC support is needed for nfs.
+
+config BR2_USE_WCHAR
+ bool "Enable WCHAR support"
+ help
+ Enable WCHAR. WCHAR support is needed for several packages
+
+config BR2_SOFT_FLOAT
+ bool "Use software floating point by default"
+ depends on BR2_arm || BR2_armeb || BR2_avr32 || BR2_mips || BR2_mipsel || BR2_powerpc || BR2_nios2
+ help
+ If your target CPU does not have a Floating Point Unit (FPU) or a
+ kernel FPU emulator, but you still wish to support floating point
+ functions, then everything will need to be compiled with soft
+ floating point support (-msoft-float).
+
+ Most people will answer N.
+
+#config BR2_SOFT_FLOAT_FP
+# bool "Use softfp"
+
+config BR2_TARGET_OPTIMIZATION
+ string "Target Optimizations"
+ default "-Os -pipe"
+ help
+ Optimizations to use when building for the target host.
+
+config BR2_CROSS_TOOLCHAIN_TARGET_UTILS
+ bool "Include target utils in cross toolchain"
+ default y
+ help
+ When using buildroot to build a deployable cross toolchain,
+ it is handy to include certain target apps with that toolchain
+ as a convenience.
+ Examples include ldd, gdbserver, and strace.
+
+ Answer Y if you want these apps (if built) copied into the
+ cross toolchain dir under <arch>-linux-uclibc/target_utils/.
+
+endif