ed56f35cbf
The fallocate() function is replaced by fallocate64() while compiling with LARGE_FILE flags. Current nios2 toolchain is missing the fallocate64() function. Fixes: http://autobuild.buildroot.net/results/9cd/9cd30031a40f768f6090cfba44c880fb2406672b http://autobuild.buildroot.net/results/7da/7da32ca8178aa6bada06dfaea38e9e693fba0db2 http://autobuild.buildroot.net/results/0ef/0ef7358289bff2a5f9efda27115eddb379c1a0b9 [...] [Peter: reference BR2_LARGEFILE, add autobuilder refs as suggested by Yann] Signed-off-by: Frank Bergmann <frank@frajasalo.de> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
config BR2_PACKAGE_FIO
|
|
bool "fio"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# fio uses posix_madvise(), which is not part of any official
|
|
# release of uClibc, but is part of uClibc Git, and backported
|
|
# in Buildroot patch set of uClibc 0.9.33. Therefore, we
|
|
# disable the build of fio for external uClibc toolchains
|
|
# (which use an unknown uClibc version) and for 0.9.31 and
|
|
# 0.9.32 which don't have posix_madvise().
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_UCLIBC && \
|
|
!BR2_UCLIBC_VERSION_0_9_31 && \
|
|
!BR2_UCLIBC_VERSION_0_9_32
|
|
# fio uses fallocate() which becomes fallocate64() while compiling
|
|
# with BR2_LARGEFILE but fallocate64() is not available on nios2
|
|
depends on !BR2_nios2
|
|
help
|
|
fio is an I/O tool meant to be used both for benchmark
|
|
and stress/hardware verification.
|
|
|
|
http://git.kernel.dk/?p=fio.git;a=summary
|
|
|
|
comment "fio needs a toolchain w/ largefile, threads"
|
|
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_nios2
|