meson: fix building host binaries with ccache 10984/head
authorAndre Heider <a.heider@gmail.com>
Sat, 11 Jan 2020 17:40:41 +0000 (18:40 +0100)
committerAndre Heider <a.heider@gmail.com>
Sat, 11 Jan 2020 17:49:17 +0000 (18:49 +0100)
commitf5c8565d1bbd8f97b1f62319398543a56d591814
tree6eec6bf3b543868ee36ca6ee7a5a5dc37779ad9c
parentdf370b3262b9fe96925c3225009581e1b6791de4
meson: fix building host binaries with ccache

With CONFIG_CCACHE, $HOSTCC is 'ccache gcc' while $TARGET_CC points to a
single wrapper script. Compiling target binaries with ccache works, but
doesn't for host binaries, because we need to supply an argv array for
argc > 1 in the meson cross file.

Always pass an array for the c and c++ compiler, and while at it, do it
for the target as well - just to be on the safe side if that ever
changes.

Fixes #10982.

Signed-off-by: Andre Heider <a.heider@gmail.com>
devel/meson/meson.mk
devel/meson/src/openwrt-cross.txt.in
devel/meson/src/openwrt-native.txt.in