[ETHOS-N][ANDROID]cross compile tvm error

I used the following commands to cross compile tvm, and encountered the error as “src/tir/analysis/identify_memcpy.cc:298:27: error: no viable constructor or deduction guide for deduction of template arguments of ‘Array’ output->push_back(Array{ptr->source, ptr->dest});" step1: cmake … -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_SYSTEM_VERSION=1 -DCMAKE_C_COMPILER=/android_tool/ndk/bin/aarch64-linux-android-clang -DCMAKE_CXX_COMPILER=/android_tool/ndk/bin/aarch64-linux-android-clang++ -DCMAKE_FIND_ROOT_PATH= /android_tool/ndk/aarch64-linux-android -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DMACHINE_NAME=aarch64-linux-android step 2: make

however, I can successfully build tvm runtime by using command “make runtime”.

how to solve this error? and whether it is ok if I don’t cross compile libtvm.so, cause it turns out i can compile networks targeting to android.