python3-grpcio: disable ccache to workaround native build failure

While enabling ccache, build python3-grpcio-native failed:
...
|error: can't copy 'tmp-glibc/work/x86_64-linux/python3-grpcio-native/
1.27.1-r0/build/lib.linux-x86_64-3.8/grpc/_cython/
cygrpc.cpython-38-x86_64-linux-gnu.so': doesn't exist or not a regular file
|ERROR: 'python3 setup.py build ' execution failed.
...

So disable ccache to workaround the failure.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Hongxu Jia 2020-04-03 15:35:37 +08:00 committed by Khem Raj
parent 84a16dbe5b
commit 2abde98b4a

View File

@ -30,3 +30,5 @@ do_compile_prepend_toolchain-clang() {
CLEANBROKEN = "1" CLEANBROKEN = "1"
BBCLASSEXTEND = "native nativesdk" BBCLASSEXTEND = "native nativesdk"
CCACHE_DISABLE = "1"