mirror of
https://github.com/godotengine/buildroot.git
synced 2025-12-31 09:48:56 +03:00
Since commitefa95b19ae("package/libxml-parser-perl: make host build use correct compiler"), we pass $(HOST_CONFIGURE_OPTS) when building host-libxml-parser-perl, in order to use the correct host compiler. However, this means that LD="$(HOSTLD)" is passed. However, the host-libxml-parser-perl passes compiler arguments to LD, so it really assumes that LD is gcc, not ld. For example, it tries to pass -mtune=generic. So, let's tell host-libxml-parser-perl that LD is "$(HOSTCC)". Fixes: http://autobuild.buildroot.net/results/2ed2e5ccefe9047c597f84d5880de2e8de2bdd94/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Tested-by: Joseph Kogut <joseph.kogut@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> (cherry picked from commit43a26d7fe4) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>