mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
toolchain/gcc: the ARC version of gcc needs host-flex/host-bison
For some reason (probably because the ARC changes modify some lex/yacc files without updating their pre-generated variants, or because the date/time of the pre-generated files is not correct), building the ARC gcc requires host-flex and host-bison. We have tested 4.2 for AVR, 4.3 and 4.4 for ARM, and none of those need host-flex or host-bison to be installed, so only the 4.4 for ARC seems to be affected. Fixes the build failure visible at http://autobuild.buildroot.org/results/673c6262e3dde8ee8dd28204d814097e6ba8f8e9/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
671bd04685
commit
7c6232658a
@ -180,6 +180,10 @@ endif
|
|||||||
GCC_HOST_PREREQ += host-mpc
|
GCC_HOST_PREREQ += host-mpc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_GCC_VERSION_4_4_7_ARC),y)
|
||||||
|
GCC_HOST_PREREQ += host-flex host-bison
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_GCC_SHARED_LIBGCC),y)
|
ifeq ($(BR2_GCC_SHARED_LIBGCC),y)
|
||||||
GCC_SHARED_LIBGCC:=--enable-shared
|
GCC_SHARED_LIBGCC:=--enable-shared
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user