package/axel: needs gcc >= 4.9
Fix the following build failure raised since bump to version 2.17.12 in commit50ba0b0a40
and517d3ea036
: src/random.c:1:23: fatal error: stdatomic.h: No such file or directory #include <stdatomic.h> ^ Fixes: - http://autobuild.buildroot.org/results/ca62edddd42252bf21caa8243f8aaba38992fc68 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> (cherry picked from commitc098306444
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
f53e8f3abf
commit
d69bdfc1ba
@ -1,10 +1,12 @@
|
||||
config BR2_PACKAGE_AXEL
|
||||
bool "axel"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
||||
help
|
||||
HTTP/FTP download accelerator.
|
||||
|
||||
https://github.com/axel-download-accelerator/axel/
|
||||
|
||||
comment "axel needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
comment "axel needs a toolchain w/ threads, gcc >= 4.9"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
|
Loading…
Reference in New Issue
Block a user