]>
Commit | Line | Data |
---|---|---|
2508b16d YM |
1 | # Buildroot backend specific options |
2 | ||
3 | if BR2_TOOLCHAIN_BUILDROOT | |
4 | source "toolchain/elf2flt/Config.in" | |
5 | source "toolchain/mklibs/Config.in" | |
6 | source "toolchain/sstrip/Config.in" | |
7 | ||
2508b16d YM |
8 | config BR2_VFP_FLOAT |
9 | bool "Use ARM Vector Floating Point unit" | |
10 | depends on !BR2_SOFT_FLOAT | |
11 | depends on BR2_arm || BR2_armeb | |
12 | help | |
13 | Setting this option will enable the "-mfpu=vfp" option. | |
14 | If your ARM CPU has a Vector Floating Point Unit (VFP) | |
15 | and the toolchain supports the option, then the | |
16 | code can be optimized. | |
17 | ||
18 | Most people will answer N. | |
19 | ||
20 | config BR2_CROSS_TOOLCHAIN_TARGET_UTILS | |
21 | bool "Include target utils in cross toolchain" | |
22 | default y | |
23 | help | |
24 | When using buildroot to build a deployable cross toolchain, | |
25 | it is handy to include certain target apps with that toolchain | |
26 | as a convenience. | |
27 | Examples include ldd, gdbserver, and strace. | |
28 | ||
29 | Answer Y if you want these apps (if built) copied into the | |
30 | cross toolchain dir under <arch>-linux-uclibc/target_utils/. | |
31 | ||
32 | endif |