Guest User

Untitled

a guest
Aug 9th, 2020
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 410.07 KB | None | 0 0
  1. Sending build context to Docker daemon 14.34kB
  2.  
  3. Step 1/67 : FROM debian:unstable
  4. ---> 0742af50f0db
  5. Step 2/67 : RUN apt-get update && apt-get install -y unzip automake build-essential curl file pkg-config git python3 libtool wget libtinfo5
  6. ---> Using cache
  7. ---> 311e466e03ff
  8. Step 3/67 : RUN dpkg --add-architecture i386 && apt-get update && apt-get install -y libc6:i386 libncurses5:i386 libstdc++6:i386 libz1:i386 && apt-get install -y ca-certificates-java openjdk-8-jdk-headless openjdk-8-jre-headless ant
  9. ---> Using cache
  10. ---> 9090ce93f0e8
  11. Step 4/67 : ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
  12. ---> Using cache
  13. ---> f5e90c66e795
  14. Step 5/67 : ENV PATH $JAVA_HOME/bin:$PATH
  15. ---> Using cache
  16. ---> 5df4349d8733
  17. Step 6/67 : WORKDIR /opt/android
  18. ---> Using cache
  19. ---> 045980af9ac7
  20. Step 7/67 : ARG NPROC=26
  21. ---> Using cache
  22. ---> 0d1a38481432
  23. Step 8/67 : ENV ANDROID_SDK_REVISION 4333796
  24. ---> Using cache
  25. ---> 624d5f0ee8f6
  26. Step 9/67 : ENV ANDROID_SDK_HASH 92ffee5a1d98d856634e8b71132e8a95d96c83a63fde1099be3d86df3106def9
  27. ---> Using cache
  28. ---> 9af71112d87b
  29. Step 10/67 : RUN curl -s -O https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_REVISION}.zip && echo "${ANDROID_SDK_HASH} sdk-tools-linux-${ANDROID_SDK_REVISION}.zip" | sha256sum -c && unzip sdk-tools-linux-${ANDROID_SDK_REVISION}.zip && rm -f sdk-tools-linux-${ANDROID_SDK_REVISION}.zip
  30. ---> Using cache
  31. ---> 3aea403aa1ad
  32. Step 11/67 : ENV ANDROID_NDK_REVISION 21d
  33. ---> Using cache
  34. ---> 6e5a879a920f
  35. Step 12/67 : ENV ANDROID_NDK_HASH bcf4023eb8cb6976a4c7cff0a8a8f145f162bf4d
  36. ---> Using cache
  37. ---> 61403d2842f9
  38. Step 13/67 : RUN curl -s -O https://dl.google.com/android/repository/android-ndk-r${ANDROID_NDK_REVISION}-linux-x86_64.zip && echo "${ANDROID_NDK_HASH} android-ndk-r${ANDROID_NDK_REVISION}-linux-x86_64.zip" | shasum -c && unzip android-ndk-r${ANDROID_NDK_REVISION}-linux-x86_64.zip && rm -f android-ndk-r${ANDROID_NDK_REVISION}-linux-x86_64.zip
  39. ---> Using cache
  40. ---> f7d926b744a4
  41. Step 14/67 : ENV WORKDIR /opt/android
  42. ---> Using cache
  43. ---> 4c4031b989ff
  44. Step 15/67 : ENV ANDROID_SDK_ROOT ${WORKDIR}/tools
  45. ---> Using cache
  46. ---> a177b12a7a8f
  47. Step 16/67 : ENV ANDROID_NDK_ROOT ${WORKDIR}/android-ndk-r${ANDROID_NDK_REVISION}
  48. ---> Using cache
  49. ---> 56b56c0d134b
  50. Step 17/67 : ENV PREFIX /opt/android/prefix
  51. ---> Using cache
  52. ---> 58ebd47ef2f3
  53. Step 18/67 : ENV TOOLCHAIN_DIR ${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64
  54. ---> Using cache
  55. ---> c2ec13a2b8b2
  56. Step 19/67 : ENV CMAKE_VERSION 3.18.1
  57. ---> Using cache
  58. ---> 8a03c0680c0c
  59. Step 20/67 : ARG CMAKE_HASH=537de8ad3a7fb4ec9b8517870db255802ad211aec00002c651e178848f7a769e
  60. ---> Using cache
  61. ---> 0333aeddb020
  62. Step 21/67 : RUN cd /usr && wget https://github.com/Kitware/CMake/releases/download/v3.18.1/cmake-3.18.1-Linux-x86_64.tar.gz && echo "${CMAKE_HASH} /usr/cmake-${CMAKE_VERSION}-Linux-x86_64.tar.gz" | sha256sum -c && tar -xzf /usr/cmake-3.18.1-Linux-x86_64.tar.gz && rm -f /usr/cmake-3.18.1-Linux-x86_64.tar.gz
  63. ---> Using cache
  64. ---> af4b738fcb51
  65. Step 22/67 : ENV PATH /usr/cmake-${CMAKE_VERSION}-Linux-x86_64/bin:$PATH
  66. ---> Using cache
  67. ---> 85d9bbf9d75e
  68. Step 23/67 : ARG BOOST_VERSION=1_73_0
  69. ---> Using cache
  70. ---> d28db6e410b1
  71. Step 24/67 : ARG BOOST_VERSION_DOT=1.73.0
  72. ---> Using cache
  73. ---> 8117d2f3631f
  74. Step 25/67 : ARG BOOST_HASH=4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402
  75. ---> Using cache
  76. ---> c8d73916b618
  77. Step 26/67 : RUN set -ex && curl -s -L -o boost_${BOOST_VERSION}.tar.bz2 https://dl.bintray.com/boostorg/release/${BOOST_VERSION_DOT}/source/boost_${BOOST_VERSION}.tar.bz2 && echo "${BOOST_HASH} boost_${BOOST_VERSION}.tar.bz2" | sha256sum -c && tar -xvf boost_${BOOST_VERSION}.tar.bz2 && rm -f boost_${BOOST_VERSION}.tar.bz2 && cd boost_${BOOST_VERSION} && ./bootstrap.sh --prefix=${PREFIX}
  78. ---> Using cache
  79. ---> 34262adf0d65
  80. Step 27/67 : ENV HOST_PATH $PATH
  81. ---> Using cache
  82. ---> 034d4c20eb8d
  83. Step 28/67 : ENV PATH $TOOLCHAIN_DIR/aarch64-linux-android/bin:$TOOLCHAIN_DIR/bin:$PATH
  84. ---> Using cache
  85. ---> 9b0037035024
  86. Step 29/67 : ENV PATH ${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH
  87. ---> Using cache
  88. ---> 0a416161faf4
  89. Step 30/67 : ENV ICONV_VERSION 1.16
  90. ---> Using cache
  91. ---> ab55bd39bcb0
  92. Step 31/67 : ENV ICONV_HASH ccf536620a45458d26ba83887a983b96827001e92a13847b45e4925cc8913178
  93. ---> Using cache
  94. ---> 2f0ad2a8216a
  95. Step 32/67 : RUN curl -s -O http://ftp.gnu.org/pub/gnu/libiconv/libiconv-${ICONV_VERSION}.tar.gz && tar -xzf libiconv-${ICONV_VERSION}.tar.gz && rm -f libiconv-${ICONV_VERSION}.tar.gz && cd libiconv-${ICONV_VERSION} && CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ ./configure --build=x86_64-linux-gnu --host=aarch64 --prefix=${PREFIX} --disable-rpath && make -j${NPROC} && make install
  96. ---> Using cache
  97. ---> a028c46e94fa
  98. Step 33/67 : RUN cd boost_${BOOST_VERSION} && ./b2 --build-type=minimal link=static runtime-link=static --with-chrono --with-date_time --with-filesystem --with-program_options --with-regex --with-serialization --with-system --with-thread --with-locale --build-dir=android --stagedir=android toolset=clang threading=multi threadapi=pthread target-os=android -sICONV_PATH=${PREFIX} install -j${NPROC}
  99. ---> Using cache
  100. ---> 4487d2d5b4aa
  101. Step 34/67 : ENV ZLIB_VERSION 1.2.11
  102. ---> Using cache
  103. ---> a48ba92636f3
  104. Step 35/67 : ENV ZLIB_HASH c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
  105. ---> Using cache
  106. ---> bf4c3f453bbd
  107. Step 36/67 : RUN curl -s -O https://zlib.net/zlib-${ZLIB_VERSION}.tar.gz && echo "${ZLIB_HASH} zlib-${ZLIB_VERSION}.tar.gz" | sha256sum -c && tar -xzf zlib-${ZLIB_VERSION}.tar.gz && rm zlib-${ZLIB_VERSION}.tar.gz && mv zlib-${ZLIB_VERSION} zlib && cd zlib && CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ ./configure --static && make -j${NPROC}
  108. ---> Using cache
  109. ---> be1dfd579056
  110. Step 37/67 : ENV ANDROID_NDK_HOME ${WORKDIR}/android-ndk-r${ANDROID_NDK_REVISION}
  111. ---> Using cache
  112. ---> 9bf7e26e97e0
  113. Step 38/67 : ARG OPENSSL_VERSION=1.1.1g
  114. ---> Using cache
  115. ---> 29377884d2e2
  116. Step 39/67 : ARG OPENSSL_HASH=ddb04774f1e32f0c49751e21b67216ac87852ceb056b75209af2443400636d46
  117. ---> Using cache
  118. ---> 07f5d7a110f5
  119. Step 40/67 : RUN curl -s -O https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz && echo "${OPENSSL_HASH} openssl-${OPENSSL_VERSION}.tar.gz" | sha256sum -c && tar -xzf openssl-${OPENSSL_VERSION}.tar.gz && rm openssl-${OPENSSL_VERSION}.tar.gz && cd openssl-${OPENSSL_VERSION} && ./Configure CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ android-arm64 no-asm no-shared --static --with-zlib-include=${WORKDIR}/zlib/include --with-zlib-lib=${WORKDIR}/zlib/lib --prefix=${PREFIX} --openssldir=${PREFIX} && sed -i 's/CNF_EX_LIBS=-ldl -pthread//g;s/BIN_CFLAGS=-pie $(CNF_CFLAGS) $(CFLAGS)//g' Makefile && make -j${NPROC} && make -j31 install
  120. ---> Using cache
  121. ---> 829420fdc916
  122. Step 41/67 : ARG ZMQ_VERSION=master
  123. ---> Using cache
  124. ---> 084a913cc4d0
  125. Step 42/67 : ARG ZMQ_HASH=501d0815bf2b0abb93be8214fc66519918ef6c40
  126. ---> Using cache
  127. ---> bf34a8b37559
  128. Step 43/67 : RUN git clone https://github.com/zeromq/libzmq.git -b ${ZMQ_VERSION} && cd libzmq && git checkout ${ZMQ_HASH} && ./autogen.sh && CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ ./configure --prefix=${PREFIX} --host=aarch64-linux-android --enable-static --disable-shared && make -j${NPROC} && make -j31 install
  129. ---> Using cache
  130. ---> 360135a78b38
  131. Step 44/67 : ARG SODIUM_VERSION=1.0.18
  132. ---> Using cache
  133. ---> bbca9ac8a2a7
  134. Step 45/67 : ARG SODIUM_HASH=4f5e89fa84ce1d178a6765b8b46f2b6f91216677
  135. ---> Using cache
  136. ---> ccea43a1094a
  137. Step 46/67 : RUN set -ex && git clone https://github.com/jedisct1/libsodium.git -b ${SODIUM_VERSION} && cd libsodium && test `git rev-parse HEAD` = ${SODIUM_HASH} || exit 1 && ./autogen.sh && CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ ./configure --prefix=${PREFIX} --host=aarch64-linux-android --enable-static --disable-shared && make -j${NPROC} && make install
  138. ---> Using cache
  139. ---> b73053637c51
  140. Step 47/67 : ENV QT_VERSION 5.15
  141. ---> Using cache
  142. ---> fe5e2bdafd41
  143. Step 48/67 : RUN git clone git://code.qt.io/qt/qt5.git -b ${QT_VERSION} && cd qt5 && perl init-repository
  144. ---> Using cache
  145. ---> 36535f44b0ed
  146. Step 49/67 : ENV ANDROID_API android-28
  147. ---> Using cache
  148. ---> e72aea33fd59
  149. Step 50/67 : RUN rm -rf /opt/android/boost_1_73_0/libs/wave/test/testwave/testfiles/utf8-test-*
  150. ---> Using cache
  151. ---> 65773b79a9ea
  152. Step 51/67 : RUN cd ${ANDROID_SDK_ROOT} && echo y | ./bin/sdkmanager "platform-tools" "platforms;${ANDROID_API}" "tools"
  153. ---> Using cache
  154. ---> d4d31a6806d2
  155. Step 52/67 : RUN cp -r ${WORKDIR}/platforms ${WORKDIR}/platform-tools ${ANDROID_SDK_ROOT}
  156. ---> Using cache
  157. ---> 92bdac06ec67
  158. Step 53/67 : ENV HOST_PATH $JAVA_HOME/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${ANDROID_SDK_ROOT}/bin
  159. ---> Using cache
  160. ---> d6c63927db8b
  161. Step 54/67 : ENV PKG_CONFIG /usr/bin/pkg-config
  162. ---> Using cache
  163. ---> 26e4300c53ef
  164. Step 55/67 : RUN cd qt5 && PATH=${HOST_PATH} ./configure -v -developer-build -release -xplatform android-clang -android-ndk-platform ${ANDROID_API} -android-ndk $ANDROID_NDK_ROOT -android-sdk $ANDROID_SDK_ROOT -android-ndk-host linux-x86_64 -no-dbus -no-qpa-platform-guard -opengl es2 -no-use-gold-linker -no-sql-mysql -opensource -confirm-license -android-arch arm64-v8a -prefix ${WORKDIR}/Qt-${QT_VERSION} -nomake tools -nomake tests -nomake examples -skip qtwebengine -skip qtserialport -skip qtconnectivity -skip qttranslations -skip qtpurchasing -skip qtgamepad -skip qtscript -skip qtdoc -no-warnings-are-errors && PATH=${HOST_PATH} make -j 39 module-qtwebsockets module-qtvirtualkeyboard module-qtsvg module-qtwayland module-qtwebglplugin module-qtquickcontrols module-qtquickcontrols2 module-qtlocation module-qtdeclarative module-qtgraphicaleffects module-qtmultimedia && PATH=${HOST_PATH} make install
  165. ---> Using cache
  166. ---> 4896e7d05b1e
  167. Step 56/67 : RUN git clone https://github.com/ZBar/ZBar.git
  168. ---> Using cache
  169. ---> 35bc2f396fb4
  170. Step 57/67 : ENV PATH ${ANDROID_SDK_ROOT}/bin:${WORKDIR}/Qt-${QT_VERSION}/bin:${WORKDIR}/tools:$PATH
  171. ---> Using cache
  172. ---> becc0a1fa478
  173. Step 58/67 : RUN cp android.mk.patch ${WORKDIR}/ZBar
  174. ---> Using cache
  175. ---> 82d515ceed9b
  176. Step 59/67 : RUN cd ZBar && git apply android.mk.patch && sed -i '15d;80d' android/jni/Android.mk && echo "APP_ABI := arm64-v8a \nAPP_STL := c++_shared \nTARGET_PLATFORM := ${ANDROID_API} \nTARGET_ARCH_ABI := arm64-v8a \nAPP_CFLAGS += -target aarch64-none-linux-android -fexceptions -fstack-protector-strong -fno-limit-debug-info -mfloat-abi=softfp -fno-builtin-memmove -fno-omit-frame-pointer -fno-stack-protector\n" >> android/jni/Application.mk && cd android && CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ ${ANDROID_NDK_ROOT}/ndk-build ICONV_SRC=${WORKDIR}/libiconv-${ICONV_VERSION} -B V=1 NDK_APPLICATION_MK=jni/Application.mk
  177. ---> Using cache
  178. ---> 98328893e1e9
  179. Step 60/67 : RUN cp ZBar/android/obj/local/arm64-v8a/lib* ${ANDROID_NDK_ROOT}/platforms/${ANDROID_API}/arch-arm64/usr/lib
  180. ---> Using cache
  181. ---> 8629a5bd37ca
  182. Step 61/67 : RUN cp -r ${PREFIX}/lib/* ${ANDROID_NDK_ROOT}/platforms/${ANDROID_API}/arch-arm64/usr/lib
  183. ---> Using cache
  184. ---> 3945813173b4
  185. Step 62/67 : ENV PATH ${WORKDIR}/Qt-${QT_VERSION}/bin:${JAVA_HOME}/bin:/usr/cmake-${CMAKE_VERSION}-Linux-x86_64/bin:${ANDROID_SDK_ROOT}/bin:${WORKDIR}/tools:$TOOLCHAIN_DIR/aarch64-linux-android/bin:$TOOLCHAIN_DIR/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$PATH
  186. ---> Using cache
  187. ---> 241925a12205
  188. Step 63/67 : RUN cd tools && curl -O http://dl-ssl.google.com/android/repository/tools_r25.2.5-linux.zip && unzip tools_r25.2.5-linux.zip && rm -f tools_r25.2.5-linux.zip && echo y | $ANDROID_SDK_ROOT/tools/android update sdk --no-ui --all --filter build-tools-28.0.3
  189. ---> Using cache
  190. ---> d454ab1a13ae
  191. Step 64/67 : RUN apt install p7zip ccache nano -y
  192. ---> Running in 8f140c06bcd3
  193. 
  194. WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  195.  
  196. Reading package lists...
  197. Building dependency tree...
  198. Reading state information...
  199. Suggested packages:
  200. distcc | icecc hunspell p7zip-full
  201. The following NEW packages will be installed:
  202. ccache nano p7zip
  203. 0 upgraded, 3 newly installed, 0 to remove and 8 not upgraded.
  204. Need to get 1168 kB of archives.
  205. After this operation, 3880 kB of additional disk space will be used.
  206. Get:1 http://deb.debian.org/debian unstable/main amd64 nano amd64 4.9.3-1 [619 kB]
  207. Get:2 http://deb.debian.org/debian unstable/main amd64 ccache amd64 3.7.11-1 [166 kB]
  208. Get:3 http://deb.debian.org/debian unstable/main amd64 p7zip amd64 16.02+dfsg-7 [383 kB]
  209. debconf: delaying package configuration, since apt-utils is not installed
  210. Fetched 1168 kB in 1s (1630 kB/s)
  211. Selecting previously unselected package nano.
  212. (Reading database ...
  213. (Reading database ... 5%
  214. (Reading database ... 10%
  215. (Reading database ... 15%
  216. (Reading database ... 20%
  217. (Reading database ... 25%
  218. (Reading database ... 30%
  219. (Reading database ... 35%
  220. (Reading database ... 40%
  221. (Reading database ... 45%
  222. (Reading database ... 50%
  223. (Reading database ... 55%
  224. (Reading database ... 60%
  225. (Reading database ... 65%
  226. (Reading database ... 70%
  227. (Reading database ... 75%
  228. (Reading database ... 80%
  229. (Reading database ... 85%
  230. (Reading database ... 90%
  231. (Reading database ... 95%
  232. (Reading database ... 100%
  233. (Reading database ... 20079 files and directories currently installed.)
  234. Preparing to unpack .../nano_4.9.3-1_amd64.deb ...
  235. Unpacking nano (4.9.3-1) ...
  236. Selecting previously unselected package ccache.
  237. Preparing to unpack .../ccache_3.7.11-1_amd64.deb ...
  238. Unpacking ccache (3.7.11-1) ...
  239. Selecting previously unselected package p7zip.
  240. Preparing to unpack .../p7zip_16.02+dfsg-7_amd64.deb ...
  241. Unpacking p7zip (16.02+dfsg-7) ...
  242. Setting up ccache (3.7.11-1) ...
  243. Updating symlinks in /usr/lib/ccache ...
  244. Setting up nano (4.9.3-1) ...
  245. update-alternatives: using /bin/nano to provide /usr/bin/editor (editor) in auto mode
  246. update-alternatives: using /bin/nano to provide /usr/bin/pico (pico) in auto mode
  247. Setting up p7zip (16.02+dfsg-7) ...
  248.  
  249. 2020-08-09 01:50:50 (21.4 MB/s) - 'libboost_locale.a' saved [1479070/1479070]
  250.  
  251. Removing intermediate container bd9a8491e95e
  252. ---> 54632e535c22
  253. Step 66/67 : RUN cd ${WORKDIR}/monero-gui && CMAKE_INCLUDE_PATH="${PREFIX}/include" CMAKE_LIBRARY_PATH="${PREFIX}/lib" CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ ./build.sh release-android -j26
  254. ---> Running in 3bb48ff7e481
  255. Building release for ANDROID
  256. /opt/android/monero-gui /opt/android/monero-gui
  257. /opt/android/monero-gui /opt/android/monero-gui
  258. fatal: unknown index entry format 0x63ab0000
  259. Unable to fetch in submodule path 'monero'
  260. fatal: unknown index entry format 0x63ab0000
  261. fatal: unknown index entry format 0x63ab0000
  262. /opt/android/monero-gui/monero /opt/android/monero-gui /opt/android/monero-gui
  263. You are currently on commit 9414194b1
  264. The most recent tag was at 7bd1ed03d
  265. You are ahead of or behind a tagged release
  266. /opt/android/monero-gui /opt/android/monero-gui
  267. fatal: unknown index entry format 0x63ab0000
  268. fatal: unknown index entry format 0x63ab0000
  269. fatal: unknown index entry format 0x63ab0000
  270. libwallet_merged.a not found - Building libwallet
  271. Building libwallet release-static for ANDROID
  272. cleaning up existing monero build dir, libs and includes
  273. /opt/android/monero-gui/monero/build/release-android /opt/android/monero-gui /opt/android/monero-gui
  274. Building for ARCH=armv8-a
  275. Configuring build for Linux x64
  276. Configuring build for Android on Linux host
  277. -- Found PythonInterp: /usr/bin/python3.8 (found version "3.8.5")
  278. -- CMake version 3.18.1
  279. -- Android: Targeting API '30' with architecture 'arm64', ABI 'arm64-v8a', and processor 'aarch64'
  280. -- Android: Selected unified Clang toolchain
  281. -- The C compiler identification is Clang 9.0.8
  282. -- The CXX compiler identification is Clang 9.0.8
  283. -- Detecting C compiler ABI info
  284. -- Detecting C compiler ABI info - done
  285. -- Check for working C compiler: /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang - skipped
  286. -- Detecting C compile features
  287. -- Detecting C compile features - done
  288. -- Detecting CXX compiler ABI info
  289. -- Detecting CXX compiler ABI info - done
  290. -- Check for working CXX compiler: /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ - skipped
  291. -- Detecting CXX compile features
  292. -- Detecting CXX compile features - done
  293. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/aarch64-linux-android/bin/ld: unrecognised emulation mode: elf_x86_64
  294. Supported emulations: aarch64linux aarch64elf aarch64elf32 aarch64elf32b aarch64elfb armelf armelfb aarch64linuxb aarch64linux32 aarch64linux32b armelfb_linux_eabi armelf_linux_eabi
  295. clang++: error: linker command failed with exit code 1 (use -v to see invocation)
  296. -- Found ccache /usr/bin/ccache, but is UNUSABLE! Return code: 1
  297. -- The ASM compiler identification is Clang
  298. -- Found assembler: /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang
  299. -- Building without build tag
  300. -- Found Git: /usr/bin/git (found version "2.28.0")
  301. -- Checking submodules
  302. -- Submodule 'external/miniupnp' is up-to-date
  303. -- Submodule 'external/unbound' is up-to-date
  304. -- Submodule 'external/rapidjson' is up-to-date
  305. -- Submodule 'external/trezor-common' is up-to-date
  306. -- Submodule 'external/randomx' is up-to-date
  307. -- Could not find DEVELOPER_LOCAL_TOOLS in env (not required)
  308. -- BOOST_IGNORE_SYSTEM_PATHS defaults to OFF
  309. -- Could not find DEVELOPER_LIBUNBOUND_OLD in env (not required)
  310. -- Building for a 64-bit system
  311. -- Building internal libraries as static
  312. -- Using LMDB as default DB type
  313. -- Stack trace on exception disabled
  314. -- Looking for pthread.h
  315. -- Looking for pthread.h - found
  316. -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
  317. -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
  318. -- Check if compiler accepts -pthread
  319. -- Check if compiler accepts -pthread - yes
  320. -- Found Threads: TRUE
  321. -- Performing Test _pthread_c
  322. -- Performing Test _pthread_c - Success
  323. -- Performing Test _pthread_cxx
  324. -- Performing Test _pthread_cxx - Success
  325. -- Found OpenSSL: /opt/android/prefix/lib/libcrypto.a (found version "1.1.1g")
  326. -- Using OpenSSL include dir at /opt/android/prefix/include
  327. -- Could NOT find HIDAPI (missing: HIDAPI_LIBRARY HIDAPI_INCLUDE_DIR)
  328. -- Looking for memset_s in c
  329. -- Looking for memset_s in c - not found
  330. -- Looking for explicit_bzero in c
  331. -- Looking for explicit_bzero in c - not found
  332. -- Looking for strptime
  333. -- Looking for strptime - found
  334. CMake Warning (dev) at /usr/cmake-3.18.1-Linux-x86_64/share/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake:273 (message):
  335. The package name passed to `find_package_handle_standard_args` (MiniUPnPc)
  336. does not match the name of the calling package (Miniupnpc). This can lead
  337. to problems in calling code that expects `find_package` result variables
  338. (e.g., `_FOUND`) to follow a certain pattern.
  339. Call Stack (most recent call first):
  340. cmake/FindMiniupnpc.cmake:39 (find_package_handle_standard_args)
  341. external/CMakeLists.txt:38 (find_package)
  342. This warning is for project developers. Use -Wno-dev to suppress it.
  343.  
  344. -- Could NOT find MiniUPnPc (missing: MINIUPNP_INCLUDE_DIR MINIUPNP_LIBRARY)
  345. -- Using in-tree miniupnpc
  346. -- Looking for libunbound
  347. -- Looking for arpa/inet.h
  348. -- Looking for arpa/inet.h - found
  349. -- Looking for endian.h
  350. -- Looking for endian.h - found
  351. -- Looking for dlfcn.h
  352. -- Looking for dlfcn.h - found
  353. -- Looking for event.h
  354. -- Looking for event.h - not found
  355. -- Looking for getopt.h
  356. -- Looking for getopt.h - found
  357. -- Looking for glob.h
  358. -- Looking for glob.h - found
  359. -- Looking for grp.h
  360. -- Looking for grp.h - found
  361. -- Looking for inttypes.h
  362. -- Looking for inttypes.h - found
  363. -- Looking for iphlpapi.h
  364. -- Looking for iphlpapi.h - not found
  365. -- Looking for login_cap.h
  366. -- Looking for login_cap.h - not found
  367. -- Looking for memory.h
  368. -- Looking for memory.h - found
  369. -- Looking for netdb.h
  370. -- Looking for netdb.h - found
  371. -- Looking for netinet/in.h
  372. -- Looking for netinet/in.h - found
  373. -- Looking for pthread.h
  374. -- Looking for pthread.h - found
  375. -- Looking for pwd.h
  376. -- Looking for pwd.h - found
  377. -- Looking for stdarg.h
  378. -- Looking for stdarg.h - found
  379. -- Looking for stdbool.h
  380. -- Looking for stdbool.h - found
  381. -- Looking for stdint.h
  382. -- Looking for stdint.h - found
  383. -- Looking for stdlib.h
  384. -- Looking for stdlib.h - found
  385. -- Looking for strings.h
  386. -- Looking for strings.h - found
  387. -- Looking for string.h
  388. -- Looking for string.h - found
  389. -- Looking for sys/param.h
  390. -- Looking for sys/param.h - found
  391. -- Looking for sys/resource.h
  392. -- Looking for sys/resource.h - found
  393. -- Looking for sys/sha2.h
  394. -- Looking for sys/sha2.h - not found
  395. -- Looking for sys/socket.h
  396. -- Looking for sys/socket.h - found
  397. -- Looking for sys/stat.h
  398. -- Looking for sys/stat.h - found
  399. -- Looking for sys/sysctl.h
  400. -- Looking for sys/sysctl.h - not found
  401. -- Looking for sys/types.h
  402. -- Looking for sys/types.h - found
  403. -- Looking for sys/uio.h
  404. -- Looking for sys/uio.h - found
  405. -- Looking for sys/un.h
  406. -- Looking for sys/un.h - found
  407. -- Looking for sys/wait.h
  408. -- Looking for sys/wait.h - found
  409. -- Looking for syslog.h
  410. -- Looking for syslog.h - found
  411. -- Looking for time.h
  412. -- Looking for time.h - found
  413. -- Looking for unistd.h
  414. -- Looking for unistd.h - found
  415. -- Looking for vfork.h
  416. -- Looking for vfork.h - not found
  417. -- Looking for windows.h
  418. -- Looking for windows.h - not found
  419. -- Looking for winsock2.h
  420. -- Looking for winsock2.h - not found
  421. -- Looking for ws2tcpip.h
  422. -- Looking for ws2tcpip.h - not found
  423. -- Looking for _beginthreadex
  424. -- Looking for _beginthreadex - not found
  425. -- Looking for arc4random
  426. -- Looking for arc4random - found
  427. -- Looking for arc4random_uniform
  428. -- Looking for arc4random_uniform - found
  429. -- Looking for chown
  430. -- Looking for chown - found
  431. -- Looking for chroot
  432. -- Looking for chroot - found
  433. -- Looking for ctime_r
  434. -- Looking for ctime_r - found
  435. -- Looking for daemon
  436. -- Looking for daemon - found
  437. -- Looking for endprotoent
  438. -- Looking for endprotoent - found
  439. -- Looking for endservent
  440. -- Looking for endservent - found
  441. -- Looking for fork
  442. -- Looking for fork - found
  443. -- Looking for fseeko
  444. -- Looking for fseeko - found
  445. -- Looking for fsync
  446. -- Looking for fsync - found
  447. -- Looking for getauxval
  448. -- Looking for getauxval - found
  449. -- Looking for getentropy
  450. -- Looking for getentropy - found
  451. -- Looking for getpwnam
  452. -- Looking for getpwnam - found
  453. -- Looking for getrlimit
  454. -- Looking for getrlimit - found
  455. -- Looking for glob
  456. -- Looking for glob - found
  457. -- Looking for gmtime_r
  458. -- Looking for gmtime_r - found
  459. -- Looking for fcntl
  460. -- Looking for fcntl - found
  461. -- Looking for inet_aton
  462. -- Looking for inet_aton - found
  463. -- Looking for inet_ntop
  464. -- Looking for inet_ntop - found
  465. -- Looking for inet_pton
  466. -- Looking for inet_pton - found
  467. -- Looking for initgroups
  468. -- Looking for initgroups - found
  469. -- Looking for ioctlsocket
  470. -- Looking for ioctlsocket - not found
  471. -- Looking for isblank
  472. -- Looking for isblank - found
  473. -- Looking for kill
  474. -- Looking for kill - found
  475. -- Looking for localtime_r
  476. -- Looking for localtime_r - found
  477. -- Looking for malloc
  478. -- Looking for malloc - found
  479. -- Looking for memmove
  480. -- Looking for memmove - found
  481. -- Looking for random
  482. -- Looking for random - found
  483. -- Looking for reallocarray
  484. -- Looking for reallocarray - found
  485. -- Looking for recvmsg
  486. -- Looking for recvmsg - found
  487. -- Looking for sbrk
  488. -- Looking for sbrk - found
  489. -- Looking for sendmsg
  490. -- Looking for sendmsg - found
  491. -- Looking for setregid
  492. -- Looking for setregid - found
  493. -- Looking for setresgid
  494. -- Looking for setresgid - found
  495. -- Looking for setresuid
  496. -- Looking for setresuid - found
  497. -- Looking for setreuid
  498. -- Looking for setreuid - found
  499. -- Looking for setrlimit
  500. -- Looking for setrlimit - found
  501. -- Looking for setsid
  502. -- Looking for setsid - found
  503. -- Looking for setusercontent
  504. -- Looking for setusercontent - not found
  505. -- Looking for sigprocmask
  506. -- Looking for sigprocmask - found
  507. -- Looking for sleep
  508. -- Looking for sleep - found
  509. -- Looking for snprintf
  510. -- Looking for snprintf - found
  511. -- Looking for socketpair
  512. -- Looking for socketpair - found
  513. -- Looking for srandom
  514. -- Looking for srandom - found
  515. -- Looking for strsep
  516. -- Looking for strsep - found
  517. -- Looking for strftime
  518. -- Looking for strftime - found
  519. -- Looking for strlcat
  520. -- Looking for strlcat - found
  521. -- Looking for strlcpy
  522. -- Looking for strlcpy - found
  523. -- Looking for strptime
  524. -- Looking for strptime - found
  525. -- Looking for tzset
  526. -- Looking for tzset - found
  527. -- Looking for usleep
  528. -- Looking for usleep - found
  529. -- Looking for writev
  530. -- Looking for writev - found
  531. -- Looking for getaddrinfo
  532. -- Looking for getaddrinfo - found
  533. -- Looking for stddef.h
  534. -- Looking for stddef.h - found
  535. -- Check size of time_t
  536. -- Check size of time_t - done
  537. -- Check size of gid_t
  538. -- Check size of gid_t - done
  539. -- Check size of in_addr_t
  540. -- Check size of in_addr_t - done
  541. -- Check size of in_port_t
  542. -- Check size of in_port_t - done
  543. -- Check size of int16_t
  544. -- Check size of int16_t - done
  545. -- Check size of int32_t
  546. -- Check size of int32_t - done
  547. -- Check size of int64_t
  548. -- Check size of int64_t - done
  549. -- Check size of int8_t
  550. -- Check size of int8_t - done
  551. -- Check size of pid_t
  552. -- Check size of pid_t - done
  553. -- Check size of rlim_t
  554. -- Check size of rlim_t - done
  555. -- Check size of ssize_t
  556. -- Check size of ssize_t - done
  557. -- Check size of uid_t
  558. -- Check size of uid_t - done
  559. -- Check size of uint16_t
  560. -- Check size of uint16_t - done
  561. -- Check size of uint32_t
  562. -- Check size of uint32_t - done
  563. -- Check size of uint64_t
  564. -- Check size of uint64_t - done
  565. -- Check size of uint8_t
  566. -- Check size of uint8_t - done
  567. -- Looking for PTHREAD_PRIO_INHERIT
  568. -- Looking for PTHREAD_PRIO_INHERIT - found
  569. -- Looking for pthread_rwlock_t
  570. -- Looking for pthread_rwlock_t - not found
  571. -- Looking for pthread_spinlock_t
  572. -- Looking for pthread_spinlock_t - not found
  573. -- Looking for openssl/conf.h
  574. -- Looking for openssl/conf.h - found
  575. -- Looking for openssl/engine.h
  576. -- Looking for openssl/engine.h - found
  577. -- Looking for openssl/err.h
  578. -- Looking for openssl/err.h - found
  579. -- Looking for openssl/rand.h
  580. -- Looking for openssl/rand.h - found
  581. -- Looking for openssl/ssl.h
  582. -- Looking for openssl/ssl.h - found
  583. -- Looking for NID_secp384r1
  584. -- Looking for NID_secp384r1 - found
  585. -- Looking for NID_X9_62_prime256v1
  586. -- Looking for NID_X9_62_prime256v1 - found
  587. -- Looking for sk_SSL_COMP_pop_free
  588. -- Looking for sk_SSL_COMP_pop_free - found
  589. -- Looking for SSL_COMP_get_compression_methods
  590. -- Looking for SSL_COMP_get_compression_methods - found
  591. -- Looking for EVP_MD_CTX_new
  592. -- Looking for EVP_MD_CTX_new - found
  593. -- Looking for EVP_sha1
  594. -- Looking for EVP_sha1 - found
  595. -- Looking for EVP_sha256
  596. -- Looking for EVP_sha256 - found
  597. -- Looking for EVP_sha512
  598. -- Looking for EVP_sha512 - found
  599. -- Looking for FIPS_mode
  600. -- Looking for FIPS_mode - found
  601. -- Looking for HMAC_Update
  602. -- Looking for HMAC_Update - found
  603. -- Looking for OPENSSL_config
  604. -- Looking for OPENSSL_config - found
  605. -- Looking for SHA512_Update
  606. -- Looking for SHA512_Update - found
  607. -- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.2")
  608. -- Looking for LIBRESSL_VERSION_TEXT
  609. -- Looking for LIBRESSL_VERSION_TEXT - not found
  610. -- Using 64-bit LMDB from source tree
  611. -- Looking for backtrace
  612. -- Looking for backtrace - not found
  613. -- Backtrace_LIBRARY: Backtrace_LIBRARY-NOTFOUND
  614. -- Could NOT find Backtrace (missing: Backtrace_LIBRARY)
  615. -- Looking for asm/hwcap.h
  616. -- Looking for asm/hwcap.h - found
  617. -- Performing Test _march=armv8_a+crypto_cxx
  618. -- Performing Test _march=armv8_a+crypto_cxx - Success
  619. -- Setting CXX flag -march=armv8-a+crypto
  620. -- Performing Test _march=armv8_a+crypto_c
  621. -- Performing Test _march=armv8_a+crypto_c - Success
  622. -- Setting C flag -march=armv8-a+crypto
  623. -- Performing Test HAVE_CXX_ATOMICS
  624. -- Performing Test HAVE_CXX_ATOMICS - Success
  625. -- Could not find HIDAPI
  626. -- Could NOT find Protobuf (missing: Protobuf_INCLUDE_DIR)
  627. -- Could NOT find Protobuf (missing: Protobuf_INCLUDE_DIR)
  628. -- Could not find Protobuf
  629. -- Building on aarch64 for armv8-a
  630. -- Checking to see if CXX compiler accepts flag -march=armv8-a+crypto
  631. -- Checking to see if CXX compiler accepts flag -march=armv8-a+crypto - yes
  632. -- Crypto extensions enabled for ARMv8
  633. -- Performing Test _Wformat_c
  634. -- Performing Test _Wformat_c - Success
  635. -- Performing Test _Wformat_cxx
  636. -- Performing Test _Wformat_cxx - Success
  637. -- Performing Test _Wformat_security_c
  638. -- Performing Test _Wformat_security_c - Success
  639. -- Performing Test _Wformat_security_cxx
  640. -- Performing Test _Wformat_security_cxx - Success
  641. -- Performing Test _fstack_protector_c
  642. -- Performing Test _fstack_protector_c - Success
  643. -- Performing Test _fstack_protector_cxx
  644. -- Performing Test _fstack_protector_cxx - Success
  645. -- Performing Test _fstack_protector_strong_c
  646. -- Performing Test _fstack_protector_strong_c - Success
  647. -- Performing Test _fstack_protector_strong_cxx
  648. -- Performing Test _fstack_protector_strong_cxx - Success
  649. -- Performing Test _fcf_protection=full_c
  650. -- Performing Test _fcf_protection=full_c - Failed
  651. -- Performing Test _fcf_protection=full_cxx
  652. -- Performing Test _fcf_protection=full_cxx - Failed
  653. -- Performing Test _fstack_clash_protection_c
  654. -- Performing Test _fstack_clash_protection_c - Failed
  655. -- Performing Test _fstack_clash_protection_cxx
  656. -- Performing Test _fstack_clash_protection_cxx - Failed
  657. -- Performing Test _mmitigate_rop_c
  658. -- Performing Test _mmitigate_rop_c - Failed
  659. -- Performing Test _mmitigate_rop_cxx
  660. -- Performing Test _mmitigate_rop_cxx - Failed
  661. -- Looking for -pie linker flag
  662. -- Looking for -pie linker flag - found
  663. -- Looking for -Wl,-z,relro linker flag
  664. -- Looking for -Wl,-z,relro linker flag - found
  665. -- Looking for -Wl,-z,now linker flag
  666. -- Looking for -Wl,-z,now linker flag - found
  667. -- Looking for -Wl,-z,noexecstack linker flag
  668. -- Looking for -Wl,-z,noexecstack linker flag - found
  669. -- Looking for -Wl,-z,noexecheap linker flag
  670. -- Looking for -Wl,-z,noexecheap linker flag - not found
  671. -- Using C security hardening flags: -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wformat -Wformat-security -fstack-protector -fstack-protector-strong
  672. -- Using C++ security hardening flags: -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wformat -Wformat-security -fstack-protector -fstack-protector-strong
  673. -- Using linker security hardening flags: -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack
  674. -- Setting FPU Flags for ARM Processors
  675. -- Checking to see if CXX compiler accepts flag -mfix-cortex-a53-835769
  676. -- Checking to see if CXX compiler accepts flag -mfix-cortex-a53-835769 - yes
  677. -- Checking to see if CXX compiler accepts flag -mfix-cortex-a53-843419
  678. -- Checking to see if CXX compiler accepts flag -mfix-cortex-a53-843419 - no
  679. -- Enabling Cortex-A53 workaround 835769
  680. -- Found Boost Version: 107300
  681. -- Could NOT find Readline (missing: Readline_INCLUDE_DIR Readline_LIBRARY)
  682. -- Looking for rl_copy_text
  683. -- Looking for rl_copy_text - not found
  684. -- Looking for rl_filename_completion_function
  685. -- Looking for rl_filename_completion_function - not found
  686. -- Looking for rl_copy_text
  687. -- Looking for rl_copy_text - not found
  688. -- Looking for rl_filename_completion_function
  689. -- Looking for rl_filename_completion_function - not found
  690. -- Could not find GNU readline library so building without readline support
  691. -- Found Git: /usr/bin/git
  692. -- You are currently on commit 9414194b1
  693. -- The most recent tag was at 7bd1ed03d
  694. -- You are ahead of or behind a tagged release
  695. -- Trezor support disabled
  696. -- Not building tests
  697. -- Not building debug utilities
  698. Doxygen: graphviz not found - graphs disabled
  699. -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
  700. -- Performing Test HAVE_C11
  701. -- Performing Test HAVE_C11 - Success
  702. -- Configuring done
  703. -- Generating done
  704. -- Build files have been written to: /opt/android/monero-gui/monero/build/release-android
  705. /opt/android/monero-gui/monero/build/release-android/src/wallet /opt/android/monero-gui/monero/build/release-android /opt/android/monero-gui /opt/android/monero-gui
  706. make: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  707. make[1]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  708. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  709. make[3]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  710. Scanning dependencies of target genversion
  711. make[3]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  712. [ 0%] Built target genversion
  713. make[3]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  714. Scanning dependencies of target obj_version
  715. make[3]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  716. make[3]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  717. [100%] Building CXX object src/CMakeFiles/obj_version.dir/__/version.cpp.o
  718. make[3]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  719. [100%] Built target obj_version
  720. make[3]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  721. Scanning dependencies of target version
  722. make[3]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  723. make[3]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  724. [100%] Linking CXX static library libversion.a
  725. make[3]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  726. [100%] Built target version
  727. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  728. make[1]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  729. make: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  730. Scanning dependencies of target generate_translations_header
  731. Scanning dependencies of target lmdb
  732. Scanning dependencies of target obj_hardforks
  733. [ 0%] Creating directories for 'generate_translations_header'
  734. [ 0%] Built target genversion
  735. [ 0%] Building C object external/db_drivers/liblmdb/CMakeFiles/lmdb.dir/mdb.c.o
  736. [ 0%] Building C object external/db_drivers/liblmdb/CMakeFiles/lmdb.dir/midl.c.o
  737. [ 1%] Building CXX object src/hardforks/CMakeFiles/obj_hardforks.dir/hardforks.cpp.o
  738. [ 2%] Built target obj_version
  739. [ 2%] No download step for 'generate_translations_header'
  740. Scanning dependencies of target randomx
  741. [ 2%] Built target version
  742. [ 2%] No update step for 'generate_translations_header'
  743. [ 4%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/aes_hash.cpp.o
  744. [ 4%] Building C object external/randomx/CMakeFiles/randomx.dir/src/argon2_ref.c.o
  745. [ 4%] Building C object external/randomx/CMakeFiles/randomx.dir/src/argon2_ssse3.c.o
  746. [ 5%] Building C object external/randomx/CMakeFiles/randomx.dir/src/argon2_avx2.c.o
  747. [ 5%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/bytecode_machine.cpp.o
  748. [ 6%] No patch step for 'generate_translations_header'
  749. [ 6%] Performing configure step for 'generate_translations_header'
  750. [ 6%] Built target obj_hardforks
  751. [ 6%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/cpu.cpp.o
  752. Scanning dependencies of target easylogging
  753. [ 8%] Building CXX object external/easylogging++/CMakeFiles/easylogging.dir/easylogging++.cc.o
  754. [ 8%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/dataset.cpp.o
  755. [ 9%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/soft_aes.cpp.o
  756. Scanning dependencies of target obj_daemonizer
  757. [ 9%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/virtual_memory.cpp.o
  758. [ 9%] Building CXX object src/daemonizer/CMakeFiles/obj_daemonizer.dir/posix_fork.cpp.o
  759. -- The C compiler identification is Clang 9.0.8
  760. Scanning dependencies of target hardforks
  761. [ 10%] Linking CXX static library libhardforks.a
  762. [ 10%] Built target hardforks
  763. [ 10%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/vm_interpreted.cpp.o
  764. -- The CXX compiler identification is Clang 9.0.8
  765. [ 12%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/allocator.cpp.o
  766. -- Detecting C compiler ABI info
  767. [ 12%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/assembly_generator_x86.cpp.o
  768. Scanning dependencies of target obj_mnemonics
  769. Scanning dependencies of target obj_checkpoints
  770. Scanning dependencies of target obj_multisig
  771. [ 12%] Building CXX object src/mnemonics/CMakeFiles/obj_mnemonics.dir/electrum-words.cpp.o
  772. -- Detecting C compiler ABI info - done
  773. -- Check for working C compiler: /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android28-clang - skipped
  774. -- Detecting C compile features
  775. -- Detecting C compile features - done
  776. Scanning dependencies of target obj_ringct_basic
  777. -- Detecting CXX compiler ABI info
  778. Scanning dependencies of target obj_ringct
  779. [ 13%] Building CXX object src/checkpoints/CMakeFiles/obj_checkpoints.dir/checkpoints.cpp.o
  780. Scanning dependencies of target obj_device
  781. [ 13%] Building CXX object src/multisig/CMakeFiles/obj_multisig.dir/multisig.cpp.o
  782. Scanning dependencies of target unbound
  783. [ 13%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/instruction.cpp.o
  784. [ 14%] Building CXX object src/ringct/CMakeFiles/obj_ringct.dir/rctSigs.cpp.o
  785. [ 14%] Building CXX object src/ringct/CMakeFiles/obj_ringct_basic.dir/rctOps.cpp.o
  786. [ 14%] Building C object external/unbound/CMakeFiles/unbound.dir/services/authzone.c.o
  787. Scanning dependencies of target obj_cncrypto
  788. [ 14%] Building CXX object src/device/CMakeFiles/obj_device.dir/device.cpp.o
  789. Scanning dependencies of target obj_blockchain_db
  790. [ 14%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/randomx.cpp.o
  791. [ 14%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/aesb.c.o
  792. -- Detecting CXX compiler ABI info - done
  793. Scanning dependencies of target obj_cryptonote_basic
  794. -- Check for working CXX compiler: /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android28-clang++ - skipped
  795. -- Detecting CXX compile features
  796. -- Detecting CXX compile features - done
  797. lrelease version 5.15.1
  798. [ 14%] Building CXX object src/blockchain_db/CMakeFiles/obj_blockchain_db.dir/blockchain_db.cpp.o
  799. -- Configuring done
  800. Scanning dependencies of target obj_device_trezor
  801. -- Generating done
  802. -- Build files have been written to: /opt/android/monero-gui/monero/build/release-android/translations
  803. [ 14%] Performing build step for 'generate_translations_header'
  804. Scanning dependencies of target obj_rpc_base
  805. Scanning dependencies of target generate_translations_header
  806. [ 50%] Building C object CMakeFiles/generate_translations_header.dir/generate_translations_header.c.o
  807. [ 14%] Building CXX object src/device_trezor/CMakeFiles/obj_device_trezor.dir/device_trezor.cpp.o
  808. [ 16%] Building CXX object src/cryptonote_basic/CMakeFiles/obj_cryptonote_basic.dir/account.cpp.o
  809. [100%] Linking C executable generate_translations_header
  810. [ 16%] Building CXX object src/rpc/CMakeFiles/obj_rpc_base.dir/rpc_args.cpp.o
  811. Updating 'monero.qm'...
  812. Generated 0 translation(s) (0 finished and 0 unfinished)
  813. Ignored 1148 untranslated source text(s)
  814. Updating 'monero_ar.qm'...
  815. Generated 0 translation(s) (0 finished and 0 unfinished)
  816. Ignored 1148 untranslated source text(s)
  817. Scanning dependencies of target obj_cryptonote_core
  818. Updating 'monero_bg.qm'...
  819. Generated 0 translation(s) (0 finished and 0 unfinished)
  820. Ignored 1148 untranslated source text(s)
  821. Scanning dependencies of target obj_net
  822. Updating 'monero_bn.qm'...
  823. Generated 0 translation(s) (0 finished and 0 unfinished)
  824. Ignored 1148 untranslated source text(s)
  825. Updating 'monero_cat.qm'...
  826. Generated 0 translation(s) (0 finished and 0 unfinished)
  827. Ignored 1148 untranslated source text(s)
  828. Updating 'monero_cs.qm'...
  829. Generated 0 translation(s) (0 finished and 0 unfinished)
  830. Ignored 1148 untranslated source text(s)
  831. Updating 'monero_da.qm'...
  832. Generated 0 translation(s) (0 finished and 0 unfinished)
  833. Ignored 1148 untranslated source text(s)
  834. Updating 'monero_de.qm'...
  835. Generated 393 translation(s) (373 finished and 20 unfinished)
  836. Ignored 755 untranslated source text(s)
  837. Scanning dependencies of target obj_wallet
  838. [ 17%] Building CXX object src/net/CMakeFiles/obj_net.dir/dandelionpp.cpp.o
  839. Updating 'monero_el.qm'...
  840. Generated 0 translation(s) (0 finished and 0 unfinished)
  841. Ignored 1148 untranslated source text(s)
  842. [ 17%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/blake256.c.o
  843. Scanning dependencies of target obj_wallet_api
  844. [ 17%] Building CXX object src/cryptonote_core/CMakeFiles/obj_cryptonote_core.dir/blockchain.cpp.o
  845. Updating 'monero_eo.qm'...
  846. Generated 0 translation(s) (0 finished and 0 unfinished)
  847. Ignored 1148 untranslated source text(s)
  848. Updating 'monero_es.qm'...
  849. Generated 135 translation(s) (97 finished and 38 unfinished)
  850. Ignored 1013 untranslated source text(s)
  851. Updating 'monero_fa.qm'...
  852. Generated 0 translation(s) (0 finished and 0 unfinished)
  853. Ignored 1148 untranslated source text(s)
  854. Updating 'monero_fi.qm'...
  855. Generated 0 translation(s) (0 finished and 0 unfinished)
  856. Ignored 1148 untranslated source text(s)
  857. Updating 'monero_fr.qm'...
  858. Generated 1023 translation(s) (1023 finished and 0 unfinished)
  859. Ignored 125 untranslated source text(s)
  860. Updating 'monero_ga.qm'...
  861. Generated 0 translation(s) (0 finished and 0 unfinished)
  862. Ignored 1148 untranslated source text(s)
  863. Updating 'monero_he.qm'...
  864. Generated 0 translation(s) (0 finished and 0 unfinished)
  865. Ignored 1148 untranslated source text(s)
  866. Updating 'monero_hi.qm'...
  867. Generated 158 translation(s) (119 finished and 39 unfinished)
  868. Ignored 990 untranslated source text(s)
  869. [ 17%] Building CXX object src/wallet/CMakeFiles/obj_wallet.dir/wallet2.cpp.o
  870. Updating 'monero_hr.qm'...
  871. Generated 0 translation(s) (0 finished and 0 unfinished)
  872. Ignored 1148 untranslated source text(s)
  873. Updating 'monero_hu.qm'...
  874. Generated 0 translation(s) (0 finished and 0 unfinished)
  875. Ignored 1148 untranslated source text(s)
  876. Updating 'monero_id.qm'...
  877. Generated 0 translation(s) (0 finished and 0 unfinished)
  878. Ignored 1148 untranslated source text(s)
  879. [ 18%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/chacha.c.o
  880. Updating 'monero_is.qm'...
  881. Generated 0 translation(s) (0 finished and 0 unfinished)
  882. Ignored 1148 untranslated source text(s)
  883. [ 18%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/wallet.cpp.o
  884. Updating 'monero_it.qm'...
  885. Generated 797 translation(s) (794 finished and 3 unfinished)
  886. Ignored 351 untranslated source text(s)
  887. Updating 'monero_ja.qm'...
  888. Generated 311 translation(s) (285 finished and 26 unfinished)
  889. Ignored 837 untranslated source text(s)
  890. Updating 'monero_kmr.qm'...
  891. Generated 0 translation(s) (0 finished and 0 unfinished)
  892. Ignored 1148 untranslated source text(s)
  893. [ 18%] Building CXX object src/wallet/CMakeFiles/obj_wallet.dir/wallet_args.cpp.o
  894. Updating 'monero_ko.qm'...
  895. Generated 0 translation(s) (0 finished and 0 unfinished)
  896. Ignored 1148 untranslated source text(s)
  897. Updating 'monero_lt.qm'...
  898. Generated 0 translation(s) (0 finished and 0 unfinished)
  899. Ignored 1148 untranslated source text(s)
  900. [ 18%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/crypto-ops-data.c.o
  901. Updating 'monero_nb_NO.qm'...
  902. Generated 0 translation(s) (0 finished and 0 unfinished)
  903. Ignored 1148 untranslated source text(s)
  904. Updating 'monero_ne.qm'...
  905. Generated 0 translation(s) (0 finished and 0 unfinished)
  906. Ignored 1148 untranslated source text(s)
  907. [ 20%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/superscalar.cpp.o
  908. [ 20%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/vm_compiled.cpp.o
  909. Updating 'monero_nl.qm'...
  910. Generated 76 translation(s) (47 finished and 29 unfinished)
  911. Ignored 1072 untranslated source text(s)
  912. [ 20%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/crypto-ops.c.o
  913. Updating 'monero_pl.qm'...
  914. Generated 13 translation(s) (6 finished and 7 unfinished)
  915. Ignored 1135 untranslated source text(s)
  916. Updating 'monero_prt.qm'...
  917. Generated 0 translation(s) (0 finished and 0 unfinished)
  918. Ignored 1148 untranslated source text(s)
  919. Updating 'monero_pt-br.qm'...
  920. Generated 4 translation(s) (2 finished and 2 unfinished)
  921. Ignored 1144 untranslated source text(s)
  922. Updating 'monero_pt-pt.qm'...
  923. Generated 0 translation(s) (0 finished and 0 unfinished)
  924. Ignored 1148 untranslated source text(s)
  925. Updating 'monero_ro.qm'...
  926. Generated 0 translation(s) (0 finished and 0 unfinished)
  927. Ignored 1148 untranslated source text(s)
  928. Updating 'monero_ru.qm'...
  929. Generated 0 translation(s) (0 finished and 0 unfinished)
  930. Ignored 1148 untranslated source text(s)
  931. Updating 'monero_sk.qm'...
  932. Generated 3 translation(s) (2 finished and 1 unfinished)
  933. Ignored 1145 untranslated source text(s)
  934. Updating 'monero_sl.qm'...
  935. Generated 0 translation(s) (0 finished and 0 unfinished)
  936. Ignored 1148 untranslated source text(s)
  937. Updating 'monero_sr.qm'...
  938. Generated 0 translation(s) (0 finished and 0 unfinished)
  939. Ignored 1148 untranslated source text(s)
  940. Updating 'monero_sv.qm'...
  941. Generated 604 translation(s) (604 finished and 0 unfinished)
  942. Ignored 544 untranslated source text(s)
  943. Updating 'monero_tr.qm'...
  944. Generated 2 translation(s) (1 finished and 1 unfinished)
  945. Ignored 1146 untranslated source text(s)
  946. [ 20%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/vm_interpreted_light.cpp.o
  947. Updating 'monero_uk.qm'...
  948. Generated 0 translation(s) (0 finished and 0 unfinished)
  949. Ignored 1148 untranslated source text(s)
  950. Updating 'monero_ur.qm'...
  951. Generated 0 translation(s) (0 finished and 0 unfinished)
  952. Ignored 1148 untranslated source text(s)
  953. Updating 'monero_zh-cn.qm'...
  954. Generated 0 translation(s) (0 finished and 0 unfinished)
  955. Ignored 1148 untranslated source text(s)
  956. Updating 'monero_zh-tw.qm'...
  957. Generated 0 translation(s) (0 finished and 0 unfinished)
  958. Ignored 1148 untranslated source text(s)
  959. Updating 'monero_zu.qm'...
  960. Generated 0 translation(s) (0 finished and 0 unfinished)
  961. Ignored 1148 untranslated source text(s)
  962. [ 20%] Building CXX object src/crypto/CMakeFiles/obj_cncrypto.dir/crypto.cpp.o
  963. Updating 'monero_zu.qm.qm'...
  964. Generated 0 translation(s) (0 finished and 0 unfinished)
  965. Ignored 1148 untranslated source text(s)
  966. Generating embedded translations header
  967. ./generate_translations_header: 1: ELF��@�*@8@@@@��~~@@-@-��pp-p-��Q�tdR�td@@-@-��/system/bin/linker64�Androidr21d6528147
  968. : not found
  969. ./generate_translations_header: 2:   �D$�A@@ �4��d��_WBE�����: not found
  970. ./generate_translations_header: 2: j�: not found
  971. ./generate_translations_header: 1: -���0���0X d: not found
  972. ./generate_translations_header: 2: c
  973. ��/d: not found
  974. ./generate_translations_header: 2: cannot open � �0?91RF���0]@-�-�/P-0z�/�/�/�/�/�/�/: No such file
  975. ./generate_translations_header: 2: 2b���qXҩ,r��WX��ywT: not found
  976. ./generate_translations_header: 1: 9�
  977. ����@�������: not found
  978. ./generate_translations_header: 2: �R�: not found
  979. ./generate_translations_header: 3: *�{D��C��_�translation_files.hw#ifndef: not found
  980. ./generate_translations_header: 8: rbstatic: not found
  981. ./generate_translations_header: 9: static: not found
  982. ./generate_translations_header: 4: �{����G�B: not found
  983. ./generate_translations_header: 1: Syntax error: word unexpected (expecting ")")
  984. make[5]: *** [CMakeFiles/generate_translations_header.dir/build.make:151: generate_translations_header] Error 2
  985. make[5]: *** Deleting file 'generate_translations_header'
  986. make[4]: *** [CMakeFiles/Makefile2:95: CMakeFiles/generate_translations_header.dir/all] Error 2
  987. make[3]: *** [Makefile:103: all] Error 2
  988. make[2]: *** [CMakeFiles/generate_translations_header.dir/build.make:132: generate_translations_header-prefix/src/generate_translations_header-stamp/generate_translations_header-build] Error 2
  989. make[1]: *** [CMakeFiles/Makefile2:967: CMakeFiles/generate_translations_header.dir/all] Error 2
  990. make[1]: *** Waiting for unfinished jobs....
  991. [ 21%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/groestl.c.o
  992. [ 22%] Building C object external/randomx/CMakeFiles/randomx.dir/src/argon2_core.c.o
  993. [ 22%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/hash-extra-blake.c.o
  994. [ 22%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/hash-extra-groestl.c.o
  995. [ 22%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/blake2_generator.cpp.o
  996. [ 24%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/hash-extra-jh.c.o
  997. [ 24%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/instructions_portable.cpp.o
  998. [ 24%] Building C object external/randomx/CMakeFiles/randomx.dir/src/reciprocal.c.o
  999. [ 24%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/hash-extra-skein.c.o
  1000. [ 25%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/virtual_machine.cpp.o
  1001. [ 25%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/hash.c.o
  1002. [ 25%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/hmac-keccak.c.o
  1003. [ 25%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/vm_compiled_light.cpp.o
  1004. [ 26%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/jh.c.o
  1005. [ 28%] Linking C static library liblmdb.a
  1006. [ 28%] Built target lmdb
  1007. [ 28%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/keccak.c.o
  1008. [ 28%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/oaes_lib.c.o
  1009. [ 29%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/random.c.o
  1010. [ 29%] Built target obj_daemonizer
  1011. [ 29%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/skein.c.o
  1012. [ 29%] Building C object external/randomx/CMakeFiles/randomx.dir/src/blake2/blake2b.c.o
  1013. [ 29%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/slow-hash.c.o
  1014. [ 30%] Building C object external/randomx/CMakeFiles/randomx.dir/src/jit_compiler_a64_static.S.o
  1015. [ 30%] Building C object external/unbound/CMakeFiles/unbound.dir/services/cache/dns.c.o
  1016. [ 30%] Building CXX object external/randomx/CMakeFiles/randomx.dir/src/jit_compiler_a64.cpp.o
  1017. [ 30%] Building C object external/unbound/CMakeFiles/unbound.dir/services/cache/infra.c.o
  1018. [ 32%] Building C object external/unbound/CMakeFiles/unbound.dir/services/cache/rrset.c.o
  1019. [ 32%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/rx-slow-hash.c.o
  1020. [ 33%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/CryptonightR_JIT.c.o
  1021. [ 33%] Building C object src/crypto/CMakeFiles/obj_cncrypto.dir/tree-hash.c.o
  1022. [ 33%] Building C object external/unbound/CMakeFiles/unbound.dir/util/data/dname.c.o
  1023. [ 33%] Building C object external/unbound/CMakeFiles/unbound.dir/util/data/msgencode.c.o
  1024. [ 34%] Building C object external/unbound/CMakeFiles/unbound.dir/util/data/msgparse.c.o
  1025. [ 34%] Built target obj_device_trezor
  1026. [ 34%] Building C object external/unbound/CMakeFiles/unbound.dir/util/data/msgreply.c.o
  1027. [ 34%] Building C object external/unbound/CMakeFiles/unbound.dir/util/data/packed_rrset.c.o
  1028. [ 34%] Building CXX object src/wallet/CMakeFiles/obj_wallet.dir/ringdb.cpp.o
  1029. [ 36%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iterator.c.o
  1030. [ 36%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_delegpt.c.o
  1031. [ 36%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_donotq.c.o
  1032. [ 36%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_fwd.c.o
  1033. [ 37%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_hints.c.o
  1034. [ 37%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_priv.c.o
  1035. [ 37%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_resptype.c.o
  1036. [ 38%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_scrub.c.o
  1037. [ 38%] Building C object external/unbound/CMakeFiles/unbound.dir/iterator/iter_utils.c.o
  1038. [ 38%] Building C object external/unbound/CMakeFiles/unbound.dir/respip/respip.c.o
  1039. [ 38%] Building C object external/unbound/CMakeFiles/unbound.dir/services/listen_dnsport.c.o
  1040. [ 38%] Building CXX object src/net/CMakeFiles/obj_net.dir/error.cpp.o
  1041. [ 40%] Building CXX object src/cryptonote_core/CMakeFiles/obj_cryptonote_core.dir/cryptonote_core.cpp.o
  1042. [ 40%] Building CXX object src/cryptonote_core/CMakeFiles/obj_cryptonote_core.dir/tx_pool.cpp.o
  1043. [ 41%] Building C object external/unbound/CMakeFiles/unbound.dir/services/localzone.c.o
  1044. [ 41%] Building CXX object src/cryptonote_core/CMakeFiles/obj_cryptonote_core.dir/tx_sanity_check.cpp.o
  1045. [ 41%] Building C object external/unbound/CMakeFiles/unbound.dir/services/mesh.c.o
  1046. [ 41%] Linking CXX static library librandomx.a
  1047. [ 41%] Building C object external/unbound/CMakeFiles/unbound.dir/services/modstack.c.o
  1048. [ 42%] Building C object external/unbound/CMakeFiles/unbound.dir/services/outbound_list.c.o
  1049. [ 42%] Built target randomx
  1050. [ 42%] Building C object external/unbound/CMakeFiles/unbound.dir/services/outside_network.c.o
  1051. [ 42%] Building C object external/unbound/CMakeFiles/unbound.dir/services/view.c.o
  1052. [ 42%] Building C object external/unbound/CMakeFiles/unbound.dir/util/alloc.c.o
  1053. [ 44%] Building C object external/unbound/CMakeFiles/unbound.dir/util/as112.c.o
  1054. [ 44%] Building C object external/unbound/CMakeFiles/unbound.dir/util/config_file.c.o
  1055. [ 44%] Building C object external/unbound/CMakeFiles/unbound.dir/util/configlexer.c.o
  1056. [ 45%] Building C object external/unbound/CMakeFiles/unbound.dir/util/configparser.c.o
  1057. [ 45%] Building CXX object src/net/CMakeFiles/obj_net.dir/i2p_address.cpp.o
  1058. [ 45%] Building C object external/unbound/CMakeFiles/unbound.dir/util/fptr_wlist.c.o
  1059. [ 45%] Building C object external/unbound/CMakeFiles/unbound.dir/util/locks.c.o
  1060. [ 46%] Building C object external/unbound/CMakeFiles/unbound.dir/util/log.c.o
  1061. [ 46%] Building C object external/unbound/CMakeFiles/unbound.dir/util/mini_event.c.o
  1062. [ 48%] Building CXX object src/device/CMakeFiles/obj_device.dir/device_default.cpp.o
  1063. [ 48%] Building C object external/unbound/CMakeFiles/unbound.dir/util/module.c.o
  1064. [ 48%] Building C object external/unbound/CMakeFiles/unbound.dir/util/netevent.c.o
  1065. [ 49%] Building C object external/unbound/CMakeFiles/unbound.dir/util/net_help.c.o
  1066. [ 49%] Building C object external/unbound/CMakeFiles/unbound.dir/util/random.c.o
  1067. [ 49%] Building C object external/unbound/CMakeFiles/unbound.dir/util/rbtree.c.o
  1068. [ 50%] Building C object external/unbound/CMakeFiles/unbound.dir/util/regional.c.o
  1069. [ 50%] Building C object external/unbound/CMakeFiles/unbound.dir/util/rtt.c.o
  1070. [ 50%] Building C object external/unbound/CMakeFiles/unbound.dir/util/storage/dnstree.c.o
  1071. [ 50%] Building C object external/unbound/CMakeFiles/unbound.dir/util/storage/lookup3.c.o
  1072. [ 52%] Building C object external/unbound/CMakeFiles/unbound.dir/util/storage/lruhash.c.o
  1073. [ 52%] Building C object external/unbound/CMakeFiles/unbound.dir/util/storage/slabhash.c.o
  1074. [ 52%] Building C object external/unbound/CMakeFiles/unbound.dir/util/timehist.c.o
  1075. [ 53%] Building C object external/unbound/CMakeFiles/unbound.dir/util/tube.c.o
  1076. [ 53%] Building C object external/unbound/CMakeFiles/unbound.dir/util/ub_event.c.o
  1077. [ 53%] Building C object external/unbound/CMakeFiles/unbound.dir/util/winsock_event.c.o
  1078. [ 53%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/autotrust.c.o
  1079. [ 54%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_anchor.c.o
  1080. [ 54%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/validator.c.o
  1081. [ 54%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_kcache.c.o
  1082. [ 56%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_kentry.c.o
  1083. [ 56%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_neg.c.o
  1084. [ 56%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_nsec3.c.o
  1085. [ 57%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_nsec.c.o
  1086. [ 57%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_secalgo.c.o
  1087. [ 57%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_sigcrypt.c.o
  1088. [ 57%] Building C object external/unbound/CMakeFiles/unbound.dir/validator/val_utils.c.o
  1089. [ 58%] Building C object external/unbound/CMakeFiles/unbound.dir/dns64/dns64.c.o
  1090. [ 58%] Building CXX object src/device/CMakeFiles/obj_device.dir/log.cpp.o
  1091. [ 58%] Building C object external/unbound/CMakeFiles/unbound.dir/testcode/checklocks.c.o
  1092. [ 58%] Building C object external/unbound/CMakeFiles/unbound.dir/sldns/keyraw.c.o
  1093. [ 60%] Building C object external/unbound/CMakeFiles/unbound.dir/sldns/sbuffer.c.o
  1094. [ 60%] Building C object external/unbound/CMakeFiles/unbound.dir/sldns/wire2str.c.o
  1095. [ 60%] Building C object external/unbound/CMakeFiles/unbound.dir/sldns/parse.c.o
  1096. [ 60%] Building C object external/unbound/CMakeFiles/unbound.dir/sldns/parseutil.c.o
  1097. [ 61%] Building C object external/unbound/CMakeFiles/unbound.dir/sldns/rrdef.c.o
  1098. [ 61%] Building C object external/unbound/CMakeFiles/unbound.dir/sldns/str2wire.c.o
  1099. [ 61%] Building C object external/unbound/CMakeFiles/unbound.dir/compat/explicit_bzero.c.o
  1100. [ 62%] Building C object external/unbound/CMakeFiles/unbound.dir/compat/reallocarray.c.o
  1101. [ 62%] Building CXX object src/ringct/CMakeFiles/obj_ringct_basic.dir/rctTypes.cpp.o
  1102. [ 62%] Building C object external/unbound/CMakeFiles/unbound.dir/libunbound/context.c.o
  1103. [ 62%] Building C object external/unbound/CMakeFiles/unbound.dir/libunbound/libunbound.c.o
  1104. [ 62%] Building C object external/unbound/CMakeFiles/unbound.dir/libunbound/libworker.c.o
  1105. [ 62%] Building C object src/ringct/CMakeFiles/obj_ringct_basic.dir/rctCryptoOps.c.o
  1106. [ 64%] Building CXX object src/ringct/CMakeFiles/obj_ringct_basic.dir/multiexp.cc.o
  1107. [ 64%] Building CXX object src/ringct/CMakeFiles/obj_ringct_basic.dir/bulletproofs.cc.o
  1108. [ 64%] Built target obj_cncrypto
  1109. [ 65%] Building CXX object src/net/CMakeFiles/obj_net.dir/parse.cpp.o
  1110. [ 65%] Building CXX object src/net/CMakeFiles/obj_net.dir/socks.cpp.o
  1111. [ 65%] Building CXX object src/net/CMakeFiles/obj_net.dir/socks_connect.cpp.o
  1112. [ 66%] Linking C static library libunbound.a
  1113. [ 66%] Built target unbound
  1114. [ 66%] Building CXX object src/net/CMakeFiles/obj_net.dir/tor_address.cpp.o
  1115. [ 66%] Built target obj_mnemonics
  1116. [ 68%] Building CXX object src/net/CMakeFiles/obj_net.dir/zmq.cpp.o
  1117. [ 69%] Building CXX object src/cryptonote_core/CMakeFiles/obj_cryptonote_core.dir/cryptonote_tx_utils.cpp.o
  1118. [ 69%] Built target obj_multisig
  1119. [ 70%] Building CXX object src/wallet/CMakeFiles/obj_wallet.dir/node_rpc_proxy.cpp.o
  1120. [ 70%] Building CXX object src/wallet/CMakeFiles/obj_wallet.dir/message_store.cpp.o
  1121. [ 70%] Building CXX object src/cryptonote_basic/CMakeFiles/obj_cryptonote_basic.dir/cryptonote_basic_impl.cpp.o
  1122. [ 70%] Building CXX object src/rpc/CMakeFiles/obj_rpc_base.dir/rpc_payment_signature.cpp.o
  1123. [ 70%] Building CXX object src/wallet/CMakeFiles/obj_wallet.dir/message_transporter.cpp.o
  1124. [ 72%] Building CXX object src/wallet/CMakeFiles/obj_wallet.dir/wallet_rpc_payments.cpp.o
  1125. [ 72%] Building CXX object src/blockchain_db/CMakeFiles/obj_blockchain_db.dir/lmdb/db_lmdb.cpp.o
  1126. [ 73%] Building CXX object src/rpc/CMakeFiles/obj_rpc_base.dir/rpc_handler.cpp.o
  1127. [ 73%] Linking CXX static library libeasylogging.a
  1128. [ 73%] Built target easylogging
  1129. [ 73%] Building CXX object src/cryptonote_basic/CMakeFiles/obj_cryptonote_basic.dir/cryptonote_format_utils.cpp.o
  1130. [ 73%] Building CXX object src/cryptonote_basic/CMakeFiles/obj_cryptonote_basic.dir/difficulty.cpp.o
  1131. [ 74%] Building CXX object src/cryptonote_basic/CMakeFiles/obj_cryptonote_basic.dir/hardfork.cpp.o
  1132. [ 74%] Building CXX object src/cryptonote_basic/CMakeFiles/obj_cryptonote_basic.dir/miner.cpp.o
  1133. [ 74%] Built target obj_device
  1134. [ 74%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/wallet_manager.cpp.o
  1135. [ 74%] Built target obj_ringct
  1136. [ 74%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/transaction_info.cpp.o
  1137. [ 76%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/transaction_history.cpp.o
  1138. /opt/android/monero-gui/monero/src/wallet/wallet2.cpp:1128:17: warning: moving a temporary object prevents copy elision [-Wpessimizing-move]
  1139.  m_http_client(std::move(http_client_factory->create())),
  1140.  ^
  1141. /opt/android/monero-gui/monero/src/wallet/wallet2.cpp:1128:17: note: remove std::move call here
  1142.  m_http_client(std::move(http_client_factory->create())),
  1143. ^~~~~~~~~~ ~
  1144. [ 76%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/pending_transaction.cpp.o
  1145. [ 76%] Built target obj_ringct_basic
  1146. [ 76%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/utils.cpp.o
  1147. [ 77%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/address_book.cpp.o
  1148. [ 77%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/subaddress.cpp.o
  1149. [ 77%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/subaddress_account.cpp.o
  1150. [ 77%] Building CXX object src/wallet/api/CMakeFiles/obj_wallet_api.dir/unsigned_transaction.cpp.o
  1151. [ 77%] Built target obj_net
  1152. [ 77%] Built target obj_rpc_base
  1153. [ 77%] Built target obj_checkpoints
  1154. [ 77%] Built target obj_blockchain_db
  1155. [ 77%] Built target obj_cryptonote_core
  1156. [ 77%] Built target obj_cryptonote_basic
  1157. [ 77%] Built target obj_wallet_api
  1158. 1 warning generated.
  1159. [ 77%] Built target obj_wallet
  1160. make: *** [Makefile:160: all] Error 2
  1161. [ 1%] Built target lmdb
  1162. [ 2%] Built target obj_hardforks
  1163. [ 4%] Built target easylogging
  1164. [ 4%] Performing build step for 'generate_translations_header'
  1165. [ 4%] Built target genversion
  1166. [ 14%] Built target randomx
  1167. [ 14%] Built target obj_daemonizer
  1168. [ 16%] Built target obj_version
  1169. [ 16%] Built target obj_mnemonics
  1170. [ 17%] Built target obj_checkpoints
  1171. [ 25%] Built target obj_cncrypto
  1172. [ 25%] Built target version
  1173. [ 50%] Linking C executable generate_translations_header
  1174. [ 26%] Built target obj_ringct
  1175. [ 26%] Built target obj_multisig
  1176. [ 28%] Built target hardforks
  1177. [ 29%] Built target obj_ringct_basic
  1178. [ 29%] Built target obj_blockchain_db
  1179. [ 29%] Built target obj_device_trezor
  1180. Updating 'monero.qm'...
  1181. Generated 0 translation(s) (0 finished and 0 unfinished)
  1182. Ignored 1148 untranslated source text(s)
  1183. [ 30%] Built target obj_device
  1184. [ 32%] Built target obj_rpc_base
  1185. Updating 'monero_ar.qm'...
  1186. Generated 0 translation(s) (0 finished and 0 unfinished)
  1187. Ignored 1148 untranslated source text(s)
  1188. Updating 'monero_bg.qm'...
  1189. Generated 0 translation(s) (0 finished and 0 unfinished)
  1190. Ignored 1148 untranslated source text(s)
  1191. [ 61%] Built target unbound
  1192. Updating 'monero_bn.qm'...
  1193. Generated 0 translation(s) (0 finished and 0 unfinished)
  1194. Ignored 1148 untranslated source text(s)
  1195. Updating 'monero_cat.qm'...
  1196. Generated 0 translation(s) (0 finished and 0 unfinished)
  1197. Ignored 1148 untranslated source text(s)
  1198. Updating 'monero_cs.qm'...
  1199. Generated 0 translation(s) (0 finished and 0 unfinished)
  1200. Ignored 1148 untranslated source text(s)
  1201. [ 64%] Built target obj_cryptonote_basic
  1202. Updating 'monero_da.qm'...
  1203. Generated 0 translation(s) (0 finished and 0 unfinished)
  1204. Ignored 1148 untranslated source text(s)
  1205. [ 68%] Built target obj_net
  1206. Updating 'monero_de.qm'...
  1207. Generated 393 translation(s) (373 finished and 20 unfinished)
  1208. Ignored 755 untranslated source text(s)
  1209. Updating 'monero_el.qm'...
  1210. Generated 0 translation(s) (0 finished and 0 unfinished)
  1211. Ignored 1148 untranslated source text(s)
  1212. Updating 'monero_eo.qm'...
  1213. Generated 0 translation(s) (0 finished and 0 unfinished)
  1214. Ignored 1148 untranslated source text(s)
  1215. [ 70%] Built target obj_cryptonote_core
  1216. Updating 'monero_es.qm'...
  1217. Generated 135 translation(s) (97 finished and 38 unfinished)
  1218. Ignored 1013 untranslated source text(s)
  1219. Updating 'monero_fa.qm'...
  1220. Generated 0 translation(s) (0 finished and 0 unfinished)
  1221. Ignored 1148 untranslated source text(s)
  1222. Updating 'monero_fi.qm'...
  1223. Generated 0 translation(s) (0 finished and 0 unfinished)
  1224. Ignored 1148 untranslated source text(s)
  1225. [ 73%] Built target obj_wallet
  1226. Updating 'monero_fr.qm'...
  1227. Generated 1023 translation(s) (1023 finished and 0 unfinished)
  1228. Ignored 125 untranslated source text(s)
  1229. Updating 'monero_ga.qm'...
  1230. Generated 0 translation(s) (0 finished and 0 unfinished)
  1231. Ignored 1148 untranslated source text(s)
  1232. Updating 'monero_he.qm'...
  1233. Generated 0 translation(s) (0 finished and 0 unfinished)
  1234. Ignored 1148 untranslated source text(s)
  1235. Updating 'monero_hi.qm'...
  1236. Generated 158 translation(s) (119 finished and 39 unfinished)
  1237. Ignored 990 untranslated source text(s)
  1238. Updating 'monero_hr.qm'...
  1239. Generated 0 translation(s) (0 finished and 0 unfinished)
  1240. Ignored 1148 untranslated source text(s)
  1241. Updating 'monero_hu.qm'...
  1242. Generated 0 translation(s) (0 finished and 0 unfinished)
  1243. Ignored 1148 untranslated source text(s)
  1244. Updating 'monero_id.qm'...
  1245. Generated 0 translation(s) (0 finished and 0 unfinished)
  1246. Ignored 1148 untranslated source text(s)
  1247. Updating 'monero_is.qm'...
  1248. Generated 0 translation(s) (0 finished and 0 unfinished)
  1249. Ignored 1148 untranslated source text(s)
  1250. Updating 'monero_it.qm'...
  1251. Generated 797 translation(s) (794 finished and 3 unfinished)
  1252. Ignored 351 untranslated source text(s)
  1253. [ 76%] Built target obj_wallet_api
  1254. Updating 'monero_ja.qm'...
  1255. Generated 311 translation(s) (285 finished and 26 unfinished)
  1256. Ignored 837 untranslated source text(s)
  1257. Updating 'monero_kmr.qm'...
  1258. Generated 0 translation(s) (0 finished and 0 unfinished)
  1259. Ignored 1148 untranslated source text(s)
  1260. Updating 'monero_ko.qm'...
  1261. Generated 0 translation(s) (0 finished and 0 unfinished)
  1262. Ignored 1148 untranslated source text(s)
  1263. Updating 'monero_lt.qm'...
  1264. Generated 0 translation(s) (0 finished and 0 unfinished)
  1265. Ignored 1148 untranslated source text(s)
  1266. Updating 'monero_nb_NO.qm'...
  1267. Generated 0 translation(s) (0 finished and 0 unfinished)
  1268. Ignored 1148 untranslated source text(s)
  1269. Updating 'monero_ne.qm'...
  1270. Generated 0 translation(s) (0 finished and 0 unfinished)
  1271. Ignored 1148 untranslated source text(s)
  1272. Updating 'monero_nl.qm'...
  1273. Generated 76 translation(s) (47 finished and 29 unfinished)
  1274. Ignored 1072 untranslated source text(s)
  1275. Updating 'monero_pl.qm'...
  1276. Generated 13 translation(s) (6 finished and 7 unfinished)
  1277. Ignored 1135 untranslated source text(s)
  1278. Updating 'monero_prt.qm'...
  1279. Generated 0 translation(s) (0 finished and 0 unfinished)
  1280. Ignored 1148 untranslated source text(s)
  1281. Updating 'monero_pt-br.qm'...
  1282. Generated 4 translation(s) (2 finished and 2 unfinished)
  1283. Ignored 1144 untranslated source text(s)
  1284. Updating 'monero_pt-pt.qm'...
  1285. Generated 0 translation(s) (0 finished and 0 unfinished)
  1286. Ignored 1148 untranslated source text(s)
  1287. Updating 'monero_ro.qm'...
  1288. Generated 0 translation(s) (0 finished and 0 unfinished)
  1289. Ignored 1148 untranslated source text(s)
  1290. Updating 'monero_ru.qm'...
  1291. Generated 0 translation(s) (0 finished and 0 unfinished)
  1292. Ignored 1148 untranslated source text(s)
  1293. Updating 'monero_sk.qm'...
  1294. Generated 3 translation(s) (2 finished and 1 unfinished)
  1295. Ignored 1145 untranslated source text(s)
  1296. Updating 'monero_sl.qm'...
  1297. Generated 0 translation(s) (0 finished and 0 unfinished)
  1298. Ignored 1148 untranslated source text(s)
  1299. Updating 'monero_sr.qm'...
  1300. Generated 0 translation(s) (0 finished and 0 unfinished)
  1301. Ignored 1148 untranslated source text(s)
  1302. Updating 'monero_sv.qm'...
  1303. Generated 604 translation(s) (604 finished and 0 unfinished)
  1304. Ignored 544 untranslated source text(s)
  1305. Updating 'monero_tr.qm'...
  1306. Generated 2 translation(s) (1 finished and 1 unfinished)
  1307. Ignored 1146 untranslated source text(s)
  1308. Updating 'monero_uk.qm'...
  1309. Generated 0 translation(s) (0 finished and 0 unfinished)
  1310. Ignored 1148 untranslated source text(s)
  1311. Updating 'monero_ur.qm'...
  1312. Generated 0 translation(s) (0 finished and 0 unfinished)
  1313. Ignored 1148 untranslated source text(s)
  1314. Updating 'monero_zh-cn.qm'...
  1315. Generated 0 translation(s) (0 finished and 0 unfinished)
  1316. Ignored 1148 untranslated source text(s)
  1317. Updating 'monero_zh-tw.qm'...
  1318. Generated 0 translation(s) (0 finished and 0 unfinished)
  1319. Ignored 1148 untranslated source text(s)
  1320. Updating 'monero_zu.qm'...
  1321. Generated 0 translation(s) (0 finished and 0 unfinished)
  1322. Ignored 1148 untranslated source text(s)
  1323. Updating 'monero_zu.qm.qm'...
  1324. Generated 0 translation(s) (0 finished and 0 unfinished)
  1325. Ignored 1148 untranslated source text(s)
  1326. Generating embedded translations header
  1327. ./generate_translations_header: 1: ELF��@�*@8@@@@��~~@@-@-��pp-p-��Q�tdR�td@@-@-��/system/bin/linker64�Androidr21d6528147
  1328. : not found
  1329. ./generate_translations_header: 2:   �D$�A@@ �4��d��_WBE�����: not found
  1330. ./generate_translations_header: 2: j�: not found
  1331. ./generate_translations_header: 1: -���0���0X d: not found
  1332. ./generate_translations_header: 2: c
  1333. ��/d: not found
  1334. ./generate_translations_header: 2: cannot open � �0?91RF���0]@-�-�/P-0z�/�/�/�/�/�/�/: No such file
  1335. ./generate_translations_header: 2: 2b���qXҩ,r��WX��ywT: not found
  1336. ./generate_translations_header: 1: 9�
  1337. ����@�������: not found
  1338. ./generate_translations_header: 2: �R�: not found
  1339. ./generate_translations_header: 3: *�{D��C��_�translation_files.hw#ifndef: not found
  1340. ./generate_translations_header: 8: rbstatic: not found
  1341. ./generate_translations_header: 9: static: not found
  1342. ./generate_translations_header: 4: �{����G�B: not found
  1343. ./generate_translations_header: 1: Syntax error: word unexpected (expecting ")")
  1344. make[5]: *** [CMakeFiles/generate_translations_header.dir/build.make:151: generate_translations_header] Error 2
  1345. make[5]: *** Deleting file 'generate_translations_header'
  1346. make[4]: *** [CMakeFiles/Makefile2:95: CMakeFiles/generate_translations_header.dir/all] Error 2
  1347. make[3]: *** [Makefile:103: all] Error 2
  1348. make[2]: *** [CMakeFiles/generate_translations_header.dir/build.make:132: generate_translations_header-prefix/src/generate_translations_header-stamp/generate_translations_header-build] Error 2
  1349. make[1]: *** [CMakeFiles/Makefile2:967: CMakeFiles/generate_translations_header.dir/all] Error 2
  1350. make[1]: *** Waiting for unfinished jobs....
  1351. Scanning dependencies of target epee
  1352. [ 76%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/byte_slice.cpp.o
  1353. [ 77%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/byte_stream.cpp.o
  1354. [ 77%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/hex.cpp.o
  1355. [ 77%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/abstract_http_client.cpp.o
  1356. [ 77%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/http_auth.cpp.o
  1357. [ 78%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/mlog.cpp.o
  1358. [ 78%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/net_helper.cpp.o
  1359. [ 78%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/net_utils_base.cpp.o
  1360. [ 80%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/string_tools.cpp.o
  1361. [ 80%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/wipeable_string.cpp.o
  1362. [ 80%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/levin_base.cpp.o
  1363. [ 81%] Building C object contrib/epee/src/CMakeFiles/epee.dir/memwipe.c.o
  1364. [ 81%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/connection_basic.cpp.o
  1365. [ 81%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/network_throttle.cpp.o
  1366. [ 81%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/network_throttle-detail.cpp.o
  1367. [ 82%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/mlocker.cpp.o
  1368. [ 82%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/buffer.cpp.o
  1369. [ 82%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/net_ssl.cpp.o
  1370. [ 84%] Building CXX object contrib/epee/src/CMakeFiles/epee.dir/int-util.cpp.o
  1371. [ 84%] Linking CXX static library libepee.a
  1372. [ 84%] Built target epee
  1373. make: *** [Makefile:160: all] Error 2
  1374. /opt/android/monero-gui/monero/build/release-android /opt/android/monero-gui /opt/android/monero-gui
  1375. make: Entering directory '/opt/android/monero-gui/monero/build/release-android/contrib/epee'
  1376. make[1]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1377. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1378. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1379. [ 14%] Built target easylogging
  1380. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1381. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1382. [100%] Built target epee
  1383. make[1]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1384. Install the project...
  1385. -- Install configuration: "Release"
  1386. -- Installing: /opt/android/monero-gui/monero/lib/libepee.a
  1387. make: Leaving directory '/opt/android/monero-gui/monero/build/release-android/contrib/epee'
  1388. make: Entering directory '/opt/android/monero-gui/monero/build/release-android/external/easylogging++'
  1389. make[1]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1390. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1391. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1392. [100%] Built target easylogging
  1393. make[1]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1394. Install the project...
  1395. -- Install configuration: "Release"
  1396. -- Installing: /opt/android/monero-gui/monero/lib/libeasylogging.a
  1397. make: Leaving directory '/opt/android/monero-gui/monero/build/release-android/external/easylogging++'
  1398. make: Entering directory '/opt/android/monero-gui/monero/build/release-android/external/db_drivers/liblmdb'
  1399. make[1]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1400. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1401. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1402. [100%] Built target lmdb
  1403. make[1]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1404. Install the project...
  1405. -- Install configuration: "Release"
  1406. -- Installing: /opt/android/monero-gui/monero/lib/liblmdb.a
  1407. make: Leaving directory '/opt/android/monero-gui/monero/build/release-android/external/db_drivers/liblmdb'
  1408. Installing libunbound...
  1409. /opt/android/monero-gui/monero/build/release-android/external/unbound /opt/android/monero-gui/monero/build/release-android /opt/android/monero-gui /opt/android/monero-gui
  1410. [100%] Built target unbound
  1411. Install the project...
  1412. -- Install configuration: "Release"
  1413. -- Installing: /opt/android/monero-gui/monero/lib/libunbound.a
  1414. /opt/android/monero-gui/monero/build/release-android /opt/android/monero-gui /opt/android/monero-gui
  1415. make: Entering directory '/opt/android/monero-gui/monero/build/release-android/external/randomx'
  1416. make[1]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1417. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1418. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1419. [ 80%] Built target randomx
  1420. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1421. Scanning dependencies of target randomx-benchmark
  1422. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1423. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1424. [ 90%] Building CXX object external/randomx/CMakeFiles/randomx-benchmark.dir/src/tests/benchmark.cpp.o
  1425. [ 90%] Building CXX object external/randomx/CMakeFiles/randomx-benchmark.dir/src/tests/affinity.cpp.o
  1426. [ 90%] Linking CXX executable randomx-benchmark
  1427. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1428. [ 90%] Built target randomx-benchmark
  1429. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1430. Scanning dependencies of target randomx-tests
  1431. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1432. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1433. [ 90%] Building CXX object external/randomx/CMakeFiles/randomx-tests.dir/src/tests/tests.cpp.o
  1434. [ 90%] Linking CXX executable randomx-tests
  1435. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1436. [ 90%] Built target randomx-tests
  1437. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1438. Scanning dependencies of target randomx-codegen
  1439. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1440. make[2]: Entering directory '/opt/android/monero-gui/monero/build/release-android'
  1441. [ 90%] Building CXX object external/randomx/CMakeFiles/randomx-codegen.dir/src/tests/code-generator.cpp.o
  1442. [100%] Linking CXX executable randomx-codegen
  1443. make[2]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1444. [100%] Built target randomx-codegen
  1445. make[1]: Leaving directory '/opt/android/monero-gui/monero/build/release-android'
  1446. Install the project...
  1447. -- Install configuration: "Release"
  1448. -- Installing: /opt/android/monero-gui/monero/lib/librandomx.a
  1449. make: Leaving directory '/opt/android/monero-gui/monero/build/release-android/external/randomx'
  1450. /opt/android/monero-gui /opt/android/monero-gui
  1451. You are currently on commit 7eeda0a8
  1452. The most recent tag was at e0faddf9
  1453. You are ahead of or behind a tagged release
  1454. Info: creating stash file /opt/android/monero-gui/build/.qmake.stash
  1455. Project WARNING: Cross compiling without sysroot. Disabling pkg-config.
  1456. sh: 1: --exists: not found
  1457. Project WARNING: Cross compiling without sysroot. Disabling pkg-config.
  1458. sh: 1: --exists: not found
  1459. Project WARNING: Cross compiling without sysroot. Disabling pkg-config.
  1460. sh: 1: --exists: not found
  1461. Project MESSAGE: Host is Android
  1462. Project MESSAGE: using camera scanner
  1463. Project MESSAGE: using static libraries
  1464. Project MESSAGE: Building with libunwind
  1465. Updating '/opt/android/monero-gui/build/translations/monero-core_ar.qm'...
  1466. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ar.qm'...
  1467. Generated 350 translation(s) (350 finished and 0 unfinished)
  1468. Ignored 337 untranslated source text(s)
  1469. Updating '/opt/android/monero-gui/build/translations/monero-core_bg.qm'...
  1470. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_bg.qm'...
  1471. Generated 492 translation(s) (492 finished and 0 unfinished)
  1472. Ignored 193 untranslated source text(s)
  1473. Updating '/opt/android/monero-gui/build/translations/monero-core_bn.qm'...
  1474. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_bn.qm'...
  1475. Generated 0 translation(s) (0 finished and 0 unfinished)
  1476. Ignored 687 untranslated source text(s)
  1477. Updating '/opt/android/monero-gui/build/translations/monero-core_cat.qm'...
  1478. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_cat.qm'...
  1479. Generated 570 translation(s) (570 finished and 0 unfinished)
  1480. Ignored 93 untranslated source text(s)
  1481. Updating '/opt/android/monero-gui/build/translations/monero-core_cs.qm'...
  1482. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_cs.qm'...
  1483. Generated 350 translation(s) (350 finished and 0 unfinished)
  1484. Ignored 319 untranslated source text(s)
  1485. Updating '/opt/android/monero-gui/build/translations/monero-core_da.qm'...
  1486. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_da.qm'...
  1487. Generated 435 translation(s) (435 finished and 0 unfinished)
  1488. Ignored 201 untranslated source text(s)
  1489. Updating '/opt/android/monero-gui/build/translations/monero-core_de.qm'...
  1490. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_de.qm'...
  1491. Generated 631 translation(s) (631 finished and 0 unfinished)
  1492. Ignored 20 untranslated source text(s)
  1493. Updating '/opt/android/monero-gui/build/translations/monero-core_el.qm'...
  1494. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_el.qm'...
  1495. Generated 82 translation(s) (82 finished and 0 unfinished)
  1496. Ignored 572 untranslated source text(s)
  1497. Updating '/opt/android/monero-gui/build/translations/monero-core_eo.qm'...
  1498. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_eo.qm'...
  1499. Generated 492 translation(s) (492 finished and 0 unfinished)
  1500. Ignored 185 untranslated source text(s)
  1501. Updating '/opt/android/monero-gui/build/translations/monero-core_es.qm'...
  1502. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_es.qm'...
  1503. Generated 667 translation(s) (667 finished and 0 unfinished)
  1504. Updating '/opt/android/monero-gui/build/translations/monero-core_fa.qm'...
  1505. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_fa.qm'...
  1506. Generated 48 translation(s) (48 finished and 0 unfinished)
  1507. Ignored 636 untranslated source text(s)
  1508. Updating '/opt/android/monero-gui/build/translations/monero-core_fi.qm'...
  1509. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_fi.qm'...
  1510. Generated 561 translation(s) (561 finished and 0 unfinished)
  1511. Ignored 106 untranslated source text(s)
  1512. Updating '/opt/android/monero-gui/build/translations/monero-core_fr.qm'...
  1513. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_fr.qm'...
  1514. Generated 548 translation(s) (548 finished and 0 unfinished)
  1515. Ignored 91 untranslated source text(s)
  1516. Updating '/opt/android/monero-gui/build/translations/monero-core_ga.qm'...
  1517. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ga.qm'...
  1518. Generated 0 translation(s) (0 finished and 0 unfinished)
  1519. Ignored 687 untranslated source text(s)
  1520. Updating '/opt/android/monero-gui/build/translations/monero-core_gr.qm'...
  1521. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_gr.qm'...
  1522. Generated 663 translation(s) (663 finished and 0 unfinished)
  1523. Updating '/opt/android/monero-gui/build/translations/monero-core_he.qm'...
  1524. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_he.qm'...
  1525. Generated 314 translation(s) (314 finished and 0 unfinished)
  1526. Ignored 348 untranslated source text(s)
  1527. Updating '/opt/android/monero-gui/build/translations/monero-core_hi.qm'...
  1528. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_hi.qm'...
  1529. Generated 390 translation(s) (390 finished and 0 unfinished)
  1530. Ignored 297 untranslated source text(s)
  1531. Updating '/opt/android/monero-gui/build/translations/monero-core_hr.qm'...
  1532. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_hr.qm'...
  1533. Generated 340 translation(s) (340 finished and 0 unfinished)
  1534. Ignored 315 untranslated source text(s)
  1535. Updating '/opt/android/monero-gui/build/translations/monero-core_hu.qm'...
  1536. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_hu.qm'...
  1537. Generated 478 translation(s) (478 finished and 0 unfinished)
  1538. Ignored 183 untranslated source text(s)
  1539. Updating '/opt/android/monero-gui/build/translations/monero-core_id.qm'...
  1540. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_id.qm'...
  1541. Generated 337 translation(s) (337 finished and 0 unfinished)
  1542. Ignored 327 untranslated source text(s)
  1543. Updating '/opt/android/monero-gui/build/translations/monero-core_is.qm'...
  1544. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_is.qm'...
  1545. Generated 0 translation(s) (0 finished and 0 unfinished)
  1546. Ignored 687 untranslated source text(s)
  1547. Updating '/opt/android/monero-gui/build/translations/monero-core_it.qm'...
  1548. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_it.qm'...
  1549. Generated 594 translation(s) (594 finished and 0 unfinished)
  1550. Ignored 57 untranslated source text(s)
  1551. Updating '/opt/android/monero-gui/build/translations/monero-core_ja.qm'...
  1552. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ja.qm'...
  1553. Generated 581 translation(s) (581 finished and 0 unfinished)
  1554. Ignored 92 untranslated source text(s)
  1555. Updating '/opt/android/monero-gui/build/translations/monero-core_kmr.qm'...
  1556. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_kmr.qm'...
  1557. Generated 0 translation(s) (0 finished and 0 unfinished)
  1558. Ignored 687 untranslated source text(s)
  1559. Updating '/opt/android/monero-gui/build/translations/monero-core_ko.qm'...
  1560. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ko.qm'...
  1561. Generated 201 translation(s) (201 finished and 0 unfinished)
  1562. Ignored 463 untranslated source text(s)
  1563. Updating '/opt/android/monero-gui/build/translations/monero-core_lt.qm'...
  1564. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_lt.qm'...
  1565. Generated 358 translation(s) (358 finished and 0 unfinished)
  1566. Ignored 317 untranslated source text(s)
  1567. Updating '/opt/android/monero-gui/build/translations/monero-core_nb_NO.qm'...
  1568. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_nb_NO.qm'...
  1569. Generated 590 translation(s) (590 finished and 0 unfinished)
  1570. Ignored 66 untranslated source text(s)
  1571. Updating '/opt/android/monero-gui/build/translations/monero-core_ne.qm'...
  1572. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ne.qm'...
  1573. Generated 0 translation(s) (0 finished and 0 unfinished)
  1574. Ignored 687 untranslated source text(s)
  1575. Updating '/opt/android/monero-gui/build/translations/monero-core_nl.qm'...
  1576. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_nl.qm'...
  1577. Generated 576 translation(s) (576 finished and 0 unfinished)
  1578. Ignored 92 untranslated source text(s)
  1579. Updating '/opt/android/monero-gui/build/translations/monero-core_pl.qm'...
  1580. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_pl.qm'...
  1581. Generated 548 translation(s) (548 finished and 0 unfinished)
  1582. Ignored 120 untranslated source text(s)
  1583. Updating '/opt/android/monero-gui/build/translations/monero-core_prt.qm'...
  1584. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_prt.qm'...
  1585. Generated 264 translation(s) (264 finished and 0 unfinished)
  1586. Ignored 403 untranslated source text(s)
  1587. Updating '/opt/android/monero-gui/build/translations/monero-core_pt-br.qm'...
  1588. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_pt-br.qm'...
  1589. Generated 660 translation(s) (660 finished and 0 unfinished)
  1590. Updating '/opt/android/monero-gui/build/translations/monero-core_pt-pt.qm'...
  1591. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_pt-pt.qm'...
  1592. Generated 537 translation(s) (537 finished and 0 unfinished)
  1593. Ignored 121 untranslated source text(s)
  1594. Updating '/opt/android/monero-gui/build/translations/monero-core_ro.qm'...
  1595. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ro.qm'...
  1596. Generated 556 translation(s) (556 finished and 0 unfinished)
  1597. Ignored 103 untranslated source text(s)
  1598. Updating '/opt/android/monero-gui/build/translations/monero-core_ru.qm'...
  1599. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ru.qm'...
  1600. Generated 661 translation(s) (661 finished and 0 unfinished)
  1601. Ignored 14 untranslated source text(s)
  1602. Updating '/opt/android/monero-gui/build/translations/monero-core_sk.qm'...
  1603. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sk.qm'...
  1604. Generated 482 translation(s) (482 finished and 0 unfinished)
  1605. Ignored 182 untranslated source text(s)
  1606. Updating '/opt/android/monero-gui/build/translations/monero-core_sl.qm'...
  1607. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sl.qm'...
  1608. Generated 533 translation(s) (533 finished and 0 unfinished)
  1609. Ignored 131 untranslated source text(s)
  1610. Updating '/opt/android/monero-gui/build/translations/monero-core_sr.qm'...
  1611. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sr.qm'...
  1612. Generated 540 translation(s) (540 finished and 0 unfinished)
  1613. Ignored 123 untranslated source text(s)
  1614. Updating '/opt/android/monero-gui/build/translations/monero-core_sv.qm'...
  1615. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sv.qm'...
  1616. Generated 516 translation(s) (516 finished and 0 unfinished)
  1617. Ignored 141 untranslated source text(s)
  1618. Updating '/opt/android/monero-gui/build/translations/monero-core_tr.qm'...
  1619. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_tr.qm'...
  1620. Generated 545 translation(s) (545 finished and 0 unfinished)
  1621. Ignored 122 untranslated source text(s)
  1622. Updating '/opt/android/monero-gui/build/translations/monero-core_uk.qm'...
  1623. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_uk.qm'...
  1624. Generated 589 translation(s) (589 finished and 0 unfinished)
  1625. Ignored 86 untranslated source text(s)
  1626. Updating '/opt/android/monero-gui/build/translations/monero-core_ur.qm'...
  1627. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ur.qm'...
  1628. Generated 0 translation(s) (0 finished and 0 unfinished)
  1629. Ignored 687 untranslated source text(s)
  1630. Updating '/opt/android/monero-gui/build/translations/monero-core_vi.qm'...
  1631. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_vi.qm'...
  1632. Generated 0 translation(s) (0 finished and 0 unfinished)
  1633. Ignored 687 untranslated source text(s)
  1634. Updating '/opt/android/monero-gui/build/translations/monero-core_zh-cn.qm'...
  1635. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_zh-cn.qm'...
  1636. Generated 603 translation(s) (603 finished and 0 unfinished)
  1637. Ignored 72 untranslated source text(s)
  1638. Updating '/opt/android/monero-gui/build/translations/monero-core_zh-tw.qm'...
  1639. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_zh-tw.qm'...
  1640. Generated 579 translation(s) (579 finished and 0 unfinished)
  1641. Ignored 96 untranslated source text(s)
  1642. Updating '/opt/android/monero-gui/build/translations/monero-core_zu.qm'...
  1643. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_zu.qm'...
  1644. Generated 0 translation(s) (0 finished and 0 unfinished)
  1645. Ignored 687 untranslated source text(s)
  1646. Project WARNING: Cross compiling without sysroot. Disabling pkg-config.
  1647. Project MESSAGE: This project is using private headers and will therefore be tied to this specific Qt module build version.
  1648. Project MESSAGE: Running this project against other versions of the Qt modules may crash at any arbitrary point.
  1649. Project MESSAGE: This is not a bug, but a result of using Qt internals. You have been warned!
  1650. WARNING: Failure to find: src/qt/downloader.h
  1651. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ar.ts -qm /opt/android/monero-gui/build/translations/monero-core_ar.qm
  1652. Updating '/opt/android/monero-gui/build/translations/monero-core_ar.qm'...
  1653. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ar.qm'...
  1654. Generated 350 translation(s) (350 finished and 0 unfinished)
  1655. Ignored 337 untranslated source text(s)
  1656. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_bg.ts -qm /opt/android/monero-gui/build/translations/monero-core_bg.qm
  1657. Updating '/opt/android/monero-gui/build/translations/monero-core_bg.qm'...
  1658. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_bg.qm'...
  1659. Generated 492 translation(s) (492 finished and 0 unfinished)
  1660. Ignored 193 untranslated source text(s)
  1661. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_bn.ts -qm /opt/android/monero-gui/build/translations/monero-core_bn.qm
  1662. Updating '/opt/android/monero-gui/build/translations/monero-core_bn.qm'...
  1663. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_bn.qm'...
  1664. Generated 0 translation(s) (0 finished and 0 unfinished)
  1665. Ignored 687 untranslated source text(s)
  1666. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_cat.ts -qm /opt/android/monero-gui/build/translations/monero-core_cat.qm
  1667. Updating '/opt/android/monero-gui/build/translations/monero-core_cat.qm'...
  1668. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_cat.qm'...
  1669. Generated 570 translation(s) (570 finished and 0 unfinished)
  1670. Ignored 93 untranslated source text(s)
  1671. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_cs.ts -qm /opt/android/monero-gui/build/translations/monero-core_cs.qm
  1672. Updating '/opt/android/monero-gui/build/translations/monero-core_cs.qm'...
  1673. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_cs.qm'...
  1674. Generated 350 translation(s) (350 finished and 0 unfinished)
  1675. Ignored 319 untranslated source text(s)
  1676. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_da.ts -qm /opt/android/monero-gui/build/translations/monero-core_da.qm
  1677. Updating '/opt/android/monero-gui/build/translations/monero-core_da.qm'...
  1678. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_da.qm'...
  1679. Generated 435 translation(s) (435 finished and 0 unfinished)
  1680. Ignored 201 untranslated source text(s)
  1681. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_de.ts -qm /opt/android/monero-gui/build/translations/monero-core_de.qm
  1682. Updating '/opt/android/monero-gui/build/translations/monero-core_de.qm'...
  1683. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_de.qm'...
  1684. Generated 631 translation(s) (631 finished and 0 unfinished)
  1685. Ignored 20 untranslated source text(s)
  1686. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_el.ts -qm /opt/android/monero-gui/build/translations/monero-core_el.qm
  1687. Updating '/opt/android/monero-gui/build/translations/monero-core_el.qm'...
  1688. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_el.qm'...
  1689. Generated 82 translation(s) (82 finished and 0 unfinished)
  1690. Ignored 572 untranslated source text(s)
  1691. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_eo.ts -qm /opt/android/monero-gui/build/translations/monero-core_eo.qm
  1692. Updating '/opt/android/monero-gui/build/translations/monero-core_eo.qm'...
  1693. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_eo.qm'...
  1694. Generated 492 translation(s) (492 finished and 0 unfinished)
  1695. Ignored 185 untranslated source text(s)
  1696. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_es.ts -qm /opt/android/monero-gui/build/translations/monero-core_es.qm
  1697. Updating '/opt/android/monero-gui/build/translations/monero-core_es.qm'...
  1698. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_es.qm'...
  1699. Generated 667 translation(s) (667 finished and 0 unfinished)
  1700. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_fa.ts -qm /opt/android/monero-gui/build/translations/monero-core_fa.qm
  1701. Updating '/opt/android/monero-gui/build/translations/monero-core_fa.qm'...
  1702. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_fa.qm'...
  1703. Generated 48 translation(s) (48 finished and 0 unfinished)
  1704. Ignored 636 untranslated source text(s)
  1705. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_fi.ts -qm /opt/android/monero-gui/build/translations/monero-core_fi.qm
  1706. Updating '/opt/android/monero-gui/build/translations/monero-core_fi.qm'...
  1707. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_fi.qm'...
  1708. Generated 561 translation(s) (561 finished and 0 unfinished)
  1709. Ignored 106 untranslated source text(s)
  1710. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_fr.ts -qm /opt/android/monero-gui/build/translations/monero-core_fr.qm
  1711. Updating '/opt/android/monero-gui/build/translations/monero-core_fr.qm'...
  1712. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_fr.qm'...
  1713. Generated 548 translation(s) (548 finished and 0 unfinished)
  1714. Ignored 91 untranslated source text(s)
  1715. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ga.ts -qm /opt/android/monero-gui/build/translations/monero-core_ga.qm
  1716. Updating '/opt/android/monero-gui/build/translations/monero-core_ga.qm'...
  1717. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ga.qm'...
  1718. Generated 0 translation(s) (0 finished and 0 unfinished)
  1719. Ignored 687 untranslated source text(s)
  1720. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_gr.ts -qm /opt/android/monero-gui/build/translations/monero-core_gr.qm
  1721. Updating '/opt/android/monero-gui/build/translations/monero-core_gr.qm'...
  1722. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_gr.qm'...
  1723. Generated 663 translation(s) (663 finished and 0 unfinished)
  1724. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_he.ts -qm /opt/android/monero-gui/build/translations/monero-core_he.qm
  1725. Updating '/opt/android/monero-gui/build/translations/monero-core_he.qm'...
  1726. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_he.qm'...
  1727. Generated 314 translation(s) (314 finished and 0 unfinished)
  1728. Ignored 348 untranslated source text(s)
  1729. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_hi.ts -qm /opt/android/monero-gui/build/translations/monero-core_hi.qm
  1730. Updating '/opt/android/monero-gui/build/translations/monero-core_hi.qm'...
  1731. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_hi.qm'...
  1732. Generated 390 translation(s) (390 finished and 0 unfinished)
  1733. Ignored 297 untranslated source text(s)
  1734. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_hr.ts -qm /opt/android/monero-gui/build/translations/monero-core_hr.qm
  1735. Updating '/opt/android/monero-gui/build/translations/monero-core_hr.qm'...
  1736. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_hr.qm'...
  1737. Generated 340 translation(s) (340 finished and 0 unfinished)
  1738. Ignored 315 untranslated source text(s)
  1739. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_hu.ts -qm /opt/android/monero-gui/build/translations/monero-core_hu.qm
  1740. Updating '/opt/android/monero-gui/build/translations/monero-core_hu.qm'...
  1741. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_hu.qm'...
  1742. Generated 478 translation(s) (478 finished and 0 unfinished)
  1743. Ignored 183 untranslated source text(s)
  1744. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_id.ts -qm /opt/android/monero-gui/build/translations/monero-core_id.qm
  1745. Updating '/opt/android/monero-gui/build/translations/monero-core_id.qm'...
  1746. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_id.qm'...
  1747. Generated 337 translation(s) (337 finished and 0 unfinished)
  1748. Ignored 327 untranslated source text(s)
  1749. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_is.ts -qm /opt/android/monero-gui/build/translations/monero-core_is.qm
  1750. Updating '/opt/android/monero-gui/build/translations/monero-core_is.qm'...
  1751. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_is.qm'...
  1752. Generated 0 translation(s) (0 finished and 0 unfinished)
  1753. Ignored 687 untranslated source text(s)
  1754. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_it.ts -qm /opt/android/monero-gui/build/translations/monero-core_it.qm
  1755. Updating '/opt/android/monero-gui/build/translations/monero-core_it.qm'...
  1756. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_it.qm'...
  1757. Generated 594 translation(s) (594 finished and 0 unfinished)
  1758. Ignored 57 untranslated source text(s)
  1759. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ja.ts -qm /opt/android/monero-gui/build/translations/monero-core_ja.qm
  1760. Updating '/opt/android/monero-gui/build/translations/monero-core_ja.qm'...
  1761. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ja.qm'...
  1762. Generated 581 translation(s) (581 finished and 0 unfinished)
  1763. Ignored 92 untranslated source text(s)
  1764. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_kmr.ts -qm /opt/android/monero-gui/build/translations/monero-core_kmr.qm
  1765. Updating '/opt/android/monero-gui/build/translations/monero-core_kmr.qm'...
  1766. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_kmr.qm'...
  1767. Generated 0 translation(s) (0 finished and 0 unfinished)
  1768. Ignored 687 untranslated source text(s)
  1769. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ko.ts -qm /opt/android/monero-gui/build/translations/monero-core_ko.qm
  1770. Updating '/opt/android/monero-gui/build/translations/monero-core_ko.qm'...
  1771. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ko.qm'...
  1772. Generated 201 translation(s) (201 finished and 0 unfinished)
  1773. Ignored 463 untranslated source text(s)
  1774. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_lt.ts -qm /opt/android/monero-gui/build/translations/monero-core_lt.qm
  1775. Updating '/opt/android/monero-gui/build/translations/monero-core_lt.qm'...
  1776. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_lt.qm'...
  1777. Generated 358 translation(s) (358 finished and 0 unfinished)
  1778. Ignored 317 untranslated source text(s)
  1779. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_nb_NO.ts -qm /opt/android/monero-gui/build/translations/monero-core_nb_NO.qm
  1780. Updating '/opt/android/monero-gui/build/translations/monero-core_nb_NO.qm'...
  1781. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_nb_NO.qm'...
  1782. Generated 590 translation(s) (590 finished and 0 unfinished)
  1783. Ignored 66 untranslated source text(s)
  1784. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ne.ts -qm /opt/android/monero-gui/build/translations/monero-core_ne.qm
  1785. Updating '/opt/android/monero-gui/build/translations/monero-core_ne.qm'...
  1786. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ne.qm'...
  1787. Generated 0 translation(s) (0 finished and 0 unfinished)
  1788. Ignored 687 untranslated source text(s)
  1789. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_nl.ts -qm /opt/android/monero-gui/build/translations/monero-core_nl.qm
  1790. Updating '/opt/android/monero-gui/build/translations/monero-core_nl.qm'...
  1791. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_nl.qm'...
  1792. Generated 576 translation(s) (576 finished and 0 unfinished)
  1793. Ignored 92 untranslated source text(s)
  1794. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_pl.ts -qm /opt/android/monero-gui/build/translations/monero-core_pl.qm
  1795. Updating '/opt/android/monero-gui/build/translations/monero-core_pl.qm'...
  1796. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_pl.qm'...
  1797. Generated 548 translation(s) (548 finished and 0 unfinished)
  1798. Ignored 120 untranslated source text(s)
  1799. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_prt.ts -qm /opt/android/monero-gui/build/translations/monero-core_prt.qm
  1800. Updating '/opt/android/monero-gui/build/translations/monero-core_prt.qm'...
  1801. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_prt.qm'...
  1802. Generated 264 translation(s) (264 finished and 0 unfinished)
  1803. Ignored 403 untranslated source text(s)
  1804. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_pt-br.ts -qm /opt/android/monero-gui/build/translations/monero-core_pt-br.qm
  1805. Updating '/opt/android/monero-gui/build/translations/monero-core_pt-br.qm'...
  1806. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_pt-br.qm'...
  1807. Generated 660 translation(s) (660 finished and 0 unfinished)
  1808. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_pt-pt.ts -qm /opt/android/monero-gui/build/translations/monero-core_pt-pt.qm
  1809. Updating '/opt/android/monero-gui/build/translations/monero-core_pt-pt.qm'...
  1810. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_pt-pt.qm'...
  1811. Generated 537 translation(s) (537 finished and 0 unfinished)
  1812. Ignored 121 untranslated source text(s)
  1813. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ro.ts -qm /opt/android/monero-gui/build/translations/monero-core_ro.qm
  1814. Updating '/opt/android/monero-gui/build/translations/monero-core_ro.qm'...
  1815. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ro.qm'...
  1816. Generated 556 translation(s) (556 finished and 0 unfinished)
  1817. Ignored 103 untranslated source text(s)
  1818. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ru.ts -qm /opt/android/monero-gui/build/translations/monero-core_ru.qm
  1819. Updating '/opt/android/monero-gui/build/translations/monero-core_ru.qm'...
  1820. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ru.qm'...
  1821. Generated 661 translation(s) (661 finished and 0 unfinished)
  1822. Ignored 14 untranslated source text(s)
  1823. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_sk.ts -qm /opt/android/monero-gui/build/translations/monero-core_sk.qm
  1824. Updating '/opt/android/monero-gui/build/translations/monero-core_sk.qm'...
  1825. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sk.qm'...
  1826. Generated 482 translation(s) (482 finished and 0 unfinished)
  1827. Ignored 182 untranslated source text(s)
  1828. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_sl.ts -qm /opt/android/monero-gui/build/translations/monero-core_sl.qm
  1829. Updating '/opt/android/monero-gui/build/translations/monero-core_sl.qm'...
  1830. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sl.qm'...
  1831. Generated 533 translation(s) (533 finished and 0 unfinished)
  1832. Ignored 131 untranslated source text(s)
  1833. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_sr.ts -qm /opt/android/monero-gui/build/translations/monero-core_sr.qm
  1834. Updating '/opt/android/monero-gui/build/translations/monero-core_sr.qm'...
  1835. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sr.qm'...
  1836. Generated 540 translation(s) (540 finished and 0 unfinished)
  1837. Ignored 123 untranslated source text(s)
  1838. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_sv.ts -qm /opt/android/monero-gui/build/translations/monero-core_sv.qm
  1839. Updating '/opt/android/monero-gui/build/translations/monero-core_sv.qm'...
  1840. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_sv.qm'...
  1841. Generated 516 translation(s) (516 finished and 0 unfinished)
  1842. Ignored 141 untranslated source text(s)
  1843. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_tr.ts -qm /opt/android/monero-gui/build/translations/monero-core_tr.qm
  1844. Updating '/opt/android/monero-gui/build/translations/monero-core_tr.qm'...
  1845. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_tr.qm'...
  1846. Generated 545 translation(s) (545 finished and 0 unfinished)
  1847. Ignored 122 untranslated source text(s)
  1848. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_uk.ts -qm /opt/android/monero-gui/build/translations/monero-core_uk.qm
  1849. Updating '/opt/android/monero-gui/build/translations/monero-core_uk.qm'...
  1850. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_uk.qm'...
  1851. Generated 589 translation(s) (589 finished and 0 unfinished)
  1852. Ignored 86 untranslated source text(s)
  1853. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_ur.ts -qm /opt/android/monero-gui/build/translations/monero-core_ur.qm
  1854. Updating '/opt/android/monero-gui/build/translations/monero-core_ur.qm'...
  1855. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_ur.qm'...
  1856. Generated 0 translation(s) (0 finished and 0 unfinished)
  1857. Ignored 687 untranslated source text(s)
  1858. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_vi.ts -qm /opt/android/monero-gui/build/translations/monero-core_vi.qm
  1859. Updating '/opt/android/monero-gui/build/translations/monero-core_vi.qm'...
  1860. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_vi.qm'...
  1861. Generated 0 translation(s) (0 finished and 0 unfinished)
  1862. Ignored 687 untranslated source text(s)
  1863. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_zh-cn.ts -qm /opt/android/monero-gui/build/translations/monero-core_zh-cn.qm
  1864. Updating '/opt/android/monero-gui/build/translations/monero-core_zh-cn.qm'...
  1865. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_zh-cn.qm'...
  1866. Generated 603 translation(s) (603 finished and 0 unfinished)
  1867. Ignored 72 untranslated source text(s)
  1868. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_zh-tw.ts -qm /opt/android/monero-gui/build/translations/monero-core_zh-tw.qm
  1869. Updating '/opt/android/monero-gui/build/translations/monero-core_zh-tw.qm'...
  1870. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_zh-tw.qm'...
  1871. Generated 579 translation(s) (579 finished and 0 unfinished)
  1872. Ignored 96 untranslated source text(s)
  1873. /opt/android/Qt-5.15/bin/lrelease -compress -nounfinished -removeidentical ../translations/monero-core_zu.ts -qm /opt/android/monero-gui/build/translations/monero-core_zu.qm
  1874. Updating '/opt/android/monero-gui/build/translations/monero-core_zu.qm'...
  1875. Removing translations equal to source text in '/opt/android/monero-gui/build/translations/monero-core_zu.qm'...
  1876. Generated 0 translation(s) (0 finished and 0 unfinished)
  1877. Ignored 687 untranslated source text(s)
  1878. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o main.o ../src/main/main.cpp
  1879. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o filter.o ../src/main/filter.cpp
  1880. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o clipboardAdapter.o ../src/main/clipboardAdapter.cpp
  1881. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o oscursor.o ../src/main/oscursor.cpp
  1882. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o WalletManager.o ../src/libwalletqt/WalletManager.cpp
  1883. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o WalletListenerImpl.o ../src/libwalletqt/WalletListenerImpl.cpp
  1884. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o Wallet.o ../src/libwalletqt/Wallet.cpp
  1885. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o PassphraseHelper.o ../src/libwalletqt/PassphraseHelper.cpp
  1886. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o PendingTransaction.o ../src/libwalletqt/PendingTransaction.cpp
  1887. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o TransactionHistory.o ../src/libwalletqt/TransactionHistory.cpp
  1888. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o TransactionInfo.o ../src/libwalletqt/TransactionInfo.cpp
  1889. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o QRCodeImageProvider.o ../src/libwalletqt/QRCodeImageProvider.cpp
  1890. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o oshelper.o ../src/main/oshelper.cpp
  1891. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o TranslationManager.o ../src/TranslationManager.cpp
  1892. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o TransactionHistoryModel.o ../src/model/TransactionHistoryModel.cpp
  1893. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o TransactionHistorySortFilterModel.o ../src/model/TransactionHistorySortFilterModel.cpp
  1894. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o BitBuffer.o ../src/QR-Code-generator/BitBuffer.cpp
  1895. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o QrCode.o ../src/QR-Code-generator/QrCode.cpp
  1896. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o QrSegment.o ../src/QR-Code-generator/QrSegment.cpp
  1897. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o AddressBookModel.o ../src/model/AddressBookModel.cpp
  1898. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o AddressBook.o ../src/libwalletqt/AddressBook.cpp
  1899. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o SubaddressModel.o ../src/model/SubaddressModel.cpp
  1900. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o Subaddress.o ../src/libwalletqt/Subaddress.cpp
  1901. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o SubaddressAccountModel.o ../src/model/SubaddressAccountModel.cpp
  1902. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o SubaddressAccount.o ../src/libwalletqt/SubaddressAccount.cpp
  1903. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o UnsignedTransaction.o ../src/libwalletqt/UnsignedTransaction.cpp
  1904. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o Logger.o ../src/main/Logger.cpp
  1905. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o MainApp.o ../src/main/MainApp.cpp
  1906. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o FutureScheduler.o ../src/qt/FutureScheduler.cpp
  1907. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o ipc.o ../src/qt/ipc.cpp
  1908. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o KeysFiles.o ../src/qt/KeysFiles.cpp
  1909. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o utils.o ../src/qt/utils.cpp
  1910. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o MoneroSettings.o ../src/qt/MoneroSettings.cpp
  1911. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o TailsOS.o ../src/qt/TailsOS.cpp
  1912. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o DaemonManager.o ../src/daemon/DaemonManager.cpp
  1913. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o QrScanThread.o ../src/QR-Code-scanner/QrScanThread.cpp
  1914. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o QrCodeScanner.o ../src/QR-Code-scanner/QrCodeScanner.cpp
  1915. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o LeftPanel_qml.cpp ../LeftPanel.qml
  1916. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o LeftPanel_qml.o LeftPanel_qml.cpp
  1917. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o version_js.cpp ../version.js
  1918. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o version_js.o version_js.cpp
  1919. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o MiddlePanel_qml.cpp ../MiddlePanel.qml
  1920. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o MiddlePanel_qml.o MiddlePanel_qml.cpp
  1921. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o main_qml.cpp ../main.qml
  1922. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o main_qml.o main_qml.cpp
  1923. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardLanguage_qml.cpp ../wizard/WizardLanguage.qml
  1924. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardLanguage_qml.o wizard_WizardLanguage_qml.cpp
  1925. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardModeRemoteNodeWarning_qml.cpp ../wizard/WizardModeRemoteNodeWarning.qml
  1926. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardModeRemoteNodeWarning_qml.o wizard_WizardModeRemoteNodeWarning_qml.cpp
  1927. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardAskPassword_qml.cpp ../wizard/WizardAskPassword.qml
  1928. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardAskPassword_qml.o wizard_WizardAskPassword_qml.cpp
  1929. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardModeSelection_qml.cpp ../wizard/WizardModeSelection.qml
  1930. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardModeSelection_qml.o wizard_WizardModeSelection_qml.cpp
  1931. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardNav_qml.cpp ../wizard/WizardNav.qml
  1932. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardNav_qml.o wizard_WizardNav_qml.cpp
  1933. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardSummary_qml.cpp ../wizard/WizardSummary.qml
  1934. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardSummary_qml.o wizard_WizardSummary_qml.cpp
  1935. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardRestoreWallet1_qml.cpp ../wizard/WizardRestoreWallet1.qml
  1936. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardRestoreWallet1_qml.o wizard_WizardRestoreWallet1_qml.cpp
  1937. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardCreateWallet1_qml.cpp ../wizard/WizardCreateWallet1.qml
  1938. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardCreateWallet1_qml.o wizard_WizardCreateWallet1_qml.cpp
  1939. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardRestoreWallet2_qml.cpp ../wizard/WizardRestoreWallet2.qml
  1940. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardRestoreWallet2_qml.o wizard_WizardRestoreWallet2_qml.cpp
  1941. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardRestoreWallet3_qml.cpp ../wizard/WizardRestoreWallet3.qml
  1942. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardRestoreWallet3_qml.o wizard_WizardRestoreWallet3_qml.cpp
  1943. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardCreateWallet2_qml.cpp ../wizard/WizardCreateWallet2.qml
  1944. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardCreateWallet2_qml.o wizard_WizardCreateWallet2_qml.cpp
  1945. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardWalletInput_qml.cpp ../wizard/WizardWalletInput.qml
  1946. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardWalletInput_qml.o wizard_WizardWalletInput_qml.cpp
  1947. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardRestoreWallet4_qml.cpp ../wizard/WizardRestoreWallet4.qml
  1948. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardRestoreWallet4_qml.o wizard_WizardRestoreWallet4_qml.cpp
  1949. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardCreateWallet3_qml.cpp ../wizard/WizardCreateWallet3.qml
  1950. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardCreateWallet3_qml.o wizard_WizardCreateWallet3_qml.cpp
  1951. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardCreateWallet4_qml.cpp ../wizard/WizardCreateWallet4.qml
  1952. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardCreateWallet4_qml.o wizard_WizardCreateWallet4_qml.cpp
  1953. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardMenuItem_qml.cpp ../wizard/WizardMenuItem.qml
  1954. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardMenuItem_qml.o wizard_WizardMenuItem_qml.cpp
  1955. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardHeader_qml.cpp ../wizard/WizardHeader.qml
  1956. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardHeader_qml.o wizard_WizardHeader_qml.cpp
  1957. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardModeBootstrap_qml.cpp ../wizard/WizardModeBootstrap.qml
  1958. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardModeBootstrap_qml.o wizard_WizardModeBootstrap_qml.cpp
  1959. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardCreateDevice1_qml.cpp ../wizard/WizardCreateDevice1.qml
  1960. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardCreateDevice1_qml.o wizard_WizardCreateDevice1_qml.cpp
  1961. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardDaemonSettings_qml.cpp ../wizard/WizardDaemonSettings.qml
  1962. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardDaemonSettings_qml.o wizard_WizardDaemonSettings_qml.cpp
  1963. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardController_qml.cpp ../wizard/WizardController.qml
  1964. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardController_qml.o wizard_WizardController_qml.cpp
  1965. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardOpenWallet1_qml.cpp ../wizard/WizardOpenWallet1.qml
  1966. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardOpenWallet1_qml.o wizard_WizardOpenWallet1_qml.cpp
  1967. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardHome_qml.cpp ../wizard/WizardHome.qml
  1968. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardHome_qml.o wizard_WizardHome_qml.cpp
  1969. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o wizard_WizardSummaryItem_qml.cpp ../wizard/WizardSummaryItem.qml
  1970. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o wizard_WizardSummaryItem_qml.o wizard_WizardSummaryItem_qml.cpp
  1971. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_TipItem_qml.cpp ../components/TipItem.qml
  1972. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_TipItem_qml.o components_TipItem_qml.cpp
  1973. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_ContextMenuItem_qml.cpp ../components/ContextMenuItem.qml
  1974. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_ContextMenuItem_qml.o components_ContextMenuItem_qml.cpp
  1975. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_TextPlainArea_qml.cpp ../components/TextPlainArea.qml
  1976. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_TextPlainArea_qml.o components_TextPlainArea_qml.cpp
  1977. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_RadioButton_qml.cpp ../components/RadioButton.qml
  1978. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_RadioButton_qml.o components_RadioButton_qml.cpp
  1979. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_InlineButton_qml.cpp ../components/InlineButton.qml
  1980. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_InlineButton_qml.o components_InlineButton_qml.cpp
  1981. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_DaemonManagerDialog_qml.cpp ../components/DaemonManagerDialog.qml
  1982. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_DaemonManagerDialog_qml.o components_DaemonManagerDialog_qml.cpp
  1983. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_AdvancedOptionsItem_qml.cpp ../components/AdvancedOptionsItem.qml
  1984. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_AdvancedOptionsItem_qml.o components_AdvancedOptionsItem_qml.cpp
  1985. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_TextPlain_qml.cpp ../components/TextPlain.qml
  1986. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_TextPlain_qml.o components_TextPlain_qml.cpp
  1987. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_SettingsListItem_qml.cpp ../components/SettingsListItem.qml
  1988. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_SettingsListItem_qml.o components_SettingsListItem_qml.cpp
  1989. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_Slider_qml.cpp ../components/Slider.qml
  1990. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_Slider_qml.o components_Slider_qml.cpp
  1991. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_TitleBar_qml.cpp ../components/TitleBar.qml
  1992. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_TitleBar_qml.o components_TitleBar_qml.cpp
  1993. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_NetworkStatusItem_qml.cpp ../components/NetworkStatusItem.qml
  1994. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_NetworkStatusItem_qml.o components_NetworkStatusItem_qml.cpp
  1995. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_LabelButton_qml.cpp ../components/LabelButton.qml
  1996. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_LabelButton_qml.o components_LabelButton_qml.cpp
  1997. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_PasswordDialog_qml.cpp ../components/PasswordDialog.qml
  1998. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_PasswordDialog_qml.o components_PasswordDialog_qml.cpp
  1999. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_CheckBox_qml.cpp ../components/CheckBox.qml
  2000. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_CheckBox_qml.o components_CheckBox_qml.cpp
  2001. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_StandardDialog_qml.cpp ../components/StandardDialog.qml
  2002. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_StandardDialog_qml.o components_StandardDialog_qml.cpp
  2003. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_UpdateDialog_qml.cpp ../components/UpdateDialog.qml
  2004. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_UpdateDialog_qml.o components_UpdateDialog_qml.cpp
  2005. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_Style_qml.cpp ../components/Style.qml
  2006. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_Style_qml.o components_Style_qml.cpp
  2007. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_LabelSubheader_qml.cpp ../components/LabelSubheader.qml
  2008. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_LabelSubheader_qml.o components_LabelSubheader_qml.cpp
  2009. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_ContextMenu_qml.cpp ../components/ContextMenu.qml
  2010. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_ContextMenu_qml.o components_ContextMenu_qml.cpp
  2011. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_WarningBox_qml.cpp ../components/WarningBox.qml
  2012. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_WarningBox_qml.o components_WarningBox_qml.cpp
  2013. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_InputDialog_qml.cpp ../components/InputDialog.qml
  2014. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_InputDialog_qml.o components_InputDialog_qml.cpp
  2015. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_IconButton_qml.cpp ../components/IconButton.qml
  2016. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_IconButton_qml.o components_IconButton_qml.cpp
  2017. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_LineEdit_qml.cpp ../components/LineEdit.qml
  2018. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_LineEdit_qml.o components_LineEdit_qml.cpp
  2019. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_Label_qml.cpp ../components/Label.qml
  2020. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_Label_qml.o components_Label_qml.cpp
  2021. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_DatePicker_qml.cpp ../components/DatePicker.qml
  2022. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_DatePicker_qml.o components_DatePicker_qml.cpp
  2023. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_StandardDropdown_qml.cpp ../components/StandardDropdown.qml
  2024. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_StandardDropdown_qml.o components_StandardDropdown_qml.cpp
  2025. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_InputMulti_qml.cpp ../components/InputMulti.qml
  2026. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_InputMulti_qml.o components_InputMulti_qml.cpp
  2027. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_ProcessingSplash_qml.cpp ../components/ProcessingSplash.qml
  2028. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_ProcessingSplash_qml.o components_ProcessingSplash_qml.cpp
  2029. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_MenuButtonDivider_qml.cpp ../components/MenuButtonDivider.qml
  2030. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_MenuButtonDivider_qml.o components_MenuButtonDivider_qml.cpp
  2031. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_RemoteNodeEdit_qml.cpp ../components/RemoteNodeEdit.qml
  2032. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_RemoteNodeEdit_qml.o components_RemoteNodeEdit_qml.cpp
  2033. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_TextBlock_qml.cpp ../components/TextBlock.qml
  2034. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_TextBlock_qml.o components_TextBlock_qml.cpp
  2035. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_StandardButton_qml.cpp ../components/StandardButton.qml
  2036. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_StandardButton_qml.o components_StandardButton_qml.cpp
  2037. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_ProgressBar_qml.cpp ../components/ProgressBar.qml
  2038. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_ProgressBar_qml.o components_ProgressBar_qml.cpp
  2039. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_MenuButton_qml.cpp ../components/MenuButton.qml
  2040. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_MenuButton_qml.o components_MenuButton_qml.cpp
  2041. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_DevicePassphraseDialog_qml.cpp ../components/DevicePassphraseDialog.qml
  2042. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_DevicePassphraseDialog_qml.o components_DevicePassphraseDialog_qml.cpp
  2043. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_LineEditMulti_qml.cpp ../components/LineEditMulti.qml
  2044. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_LineEditMulti_qml.o components_LineEditMulti_qml.cpp
  2045. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_LanguageSidebar_qml.cpp ../components/LanguageSidebar.qml
  2046. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_LanguageSidebar_qml.o components_LanguageSidebar_qml.cpp
  2047. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_CheckBox2_qml.cpp ../components/CheckBox2.qml
  2048. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_CheckBox2_qml.o components_CheckBox2_qml.cpp
  2049. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_QRCodeScanner_qml.cpp ../components/QRCodeScanner.qml
  2050. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_QRCodeScanner_qml.o components_QRCodeScanner_qml.cpp
  2051. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_Input_qml.cpp ../components/Input.qml
  2052. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_Input_qml.o components_Input_qml.cpp
  2053. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_effects_GradientBackground_qml.cpp ../components/effects/GradientBackground.qml
  2054. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_effects_GradientBackground_qml.o components_effects_GradientBackground_qml.cpp
  2055. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_effects_ImageMask_qml.cpp ../components/effects/ImageMask.qml
  2056. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_effects_ImageMask_qml.o components_effects_ImageMask_qml.cpp
  2057. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o components_effects_ColorTransition_qml.cpp ../components/effects/ColorTransition.qml
  2058. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o components_effects_ColorTransition_qml.o components_effects_ColorTransition_qml.cpp
  2059. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o fonts_FontAwesome_Object_qml.cpp ../fonts/FontAwesome/Object.qml
  2060. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o fonts_FontAwesome_Object_qml.o fonts_FontAwesome_Object_qml.cpp
  2061. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o fonts_FontAwesome_FontAwesome_qml.cpp ../fonts/FontAwesome/FontAwesome.qml
  2062. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o fonts_FontAwesome_FontAwesome_qml.o fonts_FontAwesome_FontAwesome_qml.cpp
  2063. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o js_Windows_js.cpp ../js/Windows.js
  2064. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o js_Windows_js.o js_Windows_js.cpp
  2065. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o js_Utils_js.cpp ../js/Utils.js
  2066. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o js_Utils_js.o js_Utils_js.cpp
  2067. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o js_Wizard_js.cpp ../js/Wizard.js
  2068. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o js_Wizard_js.o js_Wizard_js.cpp
  2069. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o js_TxUtils_js.cpp ../js/TxUtils.js
  2070. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o js_TxUtils_js.o js_TxUtils_js.cpp
  2071. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_Transfer_qml.cpp ../pages/Transfer.qml
  2072. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_Transfer_qml.o pages_Transfer_qml.cpp
  2073. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_Mining_qml.cpp ../pages/Mining.qml
  2074. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_Mining_qml.o pages_Mining_qml.cpp
  2075. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_Sign_qml.cpp ../pages/Sign.qml
  2076. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_Sign_qml.o pages_Sign_qml.cpp
  2077. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_Account_qml.cpp ../pages/Account.qml
  2078. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_Account_qml.o pages_Account_qml.cpp
  2079. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_AddressBook_qml.cpp ../pages/AddressBook.qml
  2080. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_AddressBook_qml.o pages_AddressBook_qml.cpp
  2081. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_Keys_qml.cpp ../pages/Keys.qml
  2082. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_Keys_qml.o pages_Keys_qml.cpp
  2083. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_History_qml.cpp ../pages/History.qml
  2084. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_History_qml.o pages_History_qml.cpp
  2085. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_SharedRingDB_qml.cpp ../pages/SharedRingDB.qml
  2086. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_SharedRingDB_qml.o pages_SharedRingDB_qml.cpp
  2087. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_Receive_qml.cpp ../pages/Receive.qml
  2088. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_Receive_qml.o pages_Receive_qml.cpp
  2089. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_TxKey_qml.cpp ../pages/TxKey.qml
  2090. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_TxKey_qml.o pages_TxKey_qml.cpp
  2091. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_settings_SettingsInfo_qml.cpp ../pages/settings/SettingsInfo.qml
  2092. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_settings_SettingsInfo_qml.o pages_settings_SettingsInfo_qml.cpp
  2093. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_settings_Navbar_qml.cpp ../pages/settings/Navbar.qml
  2094. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_settings_Navbar_qml.o pages_settings_Navbar_qml.cpp
  2095. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_settings_Settings_qml.cpp ../pages/settings/Settings.qml
  2096. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_settings_Settings_qml.o pages_settings_Settings_qml.cpp
  2097. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_settings_SettingsLog_qml.cpp ../pages/settings/SettingsLog.qml
  2098. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_settings_SettingsLog_qml.o pages_settings_SettingsLog_qml.cpp
  2099. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_settings_SettingsLayout_qml.cpp ../pages/settings/SettingsLayout.qml
  2100. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_settings_SettingsLayout_qml.o pages_settings_SettingsLayout_qml.cpp
  2101. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_settings_SettingsWallet_qml.cpp ../pages/settings/SettingsWallet.qml
  2102. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_settings_SettingsWallet_qml.o pages_settings_SettingsWallet_qml.cpp
  2103. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_settings_SettingsNode_qml.cpp ../pages/settings/SettingsNode.qml
  2104. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_settings_SettingsNode_qml.o pages_settings_SettingsNode_qml.cpp
  2105. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_merchant_MerchantTitlebar_qml.cpp ../pages/merchant/MerchantTitlebar.qml
  2106. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_merchant_MerchantTitlebar_qml.o pages_merchant_MerchantTitlebar_qml.cpp
  2107. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_merchant_Merchant_qml.cpp ../pages/merchant/Merchant.qml
  2108. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_merchant_Merchant_qml.o pages_merchant_Merchant_qml.cpp
  2109. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_merchant_MerchantCheckbox_qml.cpp ../pages/merchant/MerchantCheckbox.qml
  2110. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_merchant_MerchantCheckbox_qml.o pages_merchant_MerchantCheckbox_qml.cpp
  2111. /opt/android/Qt-5.15/bin/qmlcachegen --resource=/opt/android/monero-gui/qml.qrc -o pages_merchant_MerchantTrackingList_qml.cpp ../pages/merchant/MerchantTrackingList.qml
  2112. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o pages_merchant_MerchantTrackingList_qml.o pages_merchant_MerchantTrackingList_qml.cpp
  2113. /opt/android/Qt-5.15/bin/qmlcachegen --resource-file-mapping=/opt/android/monero-gui/qml.qrc=/opt/android/monero-gui/build/qml_qmlcache.qrc -o qmlcache_loader.cpp ../qml.qrc
  2114. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o qmlcache_loader.o qmlcache_loader.cpp
  2115. /opt/android/Qt-5.15/bin/rcc -name translations translations/translations.qrc -o qrc_translations.cpp
  2116. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o qrc_translations.o qrc_translations.cpp
  2117. /opt/android/Qt-5.15/bin/rcc -name qml_qmlcache qml_qmlcache.qrc -o qrc_qml_qmlcache.cpp
  2118. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o qrc_qml_qmlcache.o qrc_qml_qmlcache.cpp
  2119. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -dM -E -o moc_predefs.h ../../Qt-5.15/mkspecs/features/data/dummy.cpp
  2120. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/main/filter.h -o moc_filter.cpp
  2121. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_filter.o moc_filter.cpp
  2122. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/main/clipboardAdapter.h -o moc_clipboardAdapter.cpp
  2123. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_clipboardAdapter.o moc_clipboardAdapter.cpp
  2124. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/main/oscursor.h -o moc_oscursor.cpp
  2125. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_oscursor.o moc_oscursor.cpp
  2126. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/WalletManager.h -o moc_WalletManager.cpp
  2127. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_WalletManager.o moc_WalletManager.cpp
  2128. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/Wallet.h -o moc_Wallet.cpp
  2129. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_Wallet.o moc_Wallet.cpp
  2130. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/PendingTransaction.h -o moc_PendingTransaction.cpp
  2131. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_PendingTransaction.o moc_PendingTransaction.cpp
  2132. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/TransactionHistory.h -o moc_TransactionHistory.cpp
  2133. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_TransactionHistory.o moc_TransactionHistory.cpp
  2134. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/TransactionInfo.h -o moc_TransactionInfo.cpp
  2135. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_TransactionInfo.o moc_TransactionInfo.cpp
  2136. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/Transfer.h -o moc_Transfer.cpp
  2137. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_Transfer.o moc_Transfer.cpp
  2138. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/NetworkType.h -o moc_NetworkType.cpp
  2139. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_NetworkType.o moc_NetworkType.cpp
  2140. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/main/oshelper.h -o moc_oshelper.cpp
  2141. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_oshelper.o moc_oshelper.cpp
  2142. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/TranslationManager.h -o moc_TranslationManager.cpp
  2143. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_TranslationManager.o moc_TranslationManager.cpp
  2144. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/model/TransactionHistoryModel.h -o moc_TransactionHistoryModel.cpp
  2145. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_TransactionHistoryModel.o moc_TransactionHistoryModel.cpp
  2146. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/model/TransactionHistorySortFilterModel.h -o moc_TransactionHistorySortFilterModel.cpp
  2147. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_TransactionHistorySortFilterModel.o moc_TransactionHistorySortFilterModel.cpp
  2148. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/model/AddressBookModel.h -o moc_AddressBookModel.cpp
  2149. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_AddressBookModel.o moc_AddressBookModel.cpp
  2150. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/AddressBook.h -o moc_AddressBook.cpp
  2151. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_AddressBook.o moc_AddressBook.cpp
  2152. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/model/SubaddressModel.h -o moc_SubaddressModel.cpp
  2153. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_SubaddressModel.o moc_SubaddressModel.cpp
  2154. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/Subaddress.h -o moc_Subaddress.cpp
  2155. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_Subaddress.o moc_Subaddress.cpp
  2156. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/model/SubaddressAccountModel.h -o moc_SubaddressAccountModel.cpp
  2157. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_SubaddressAccountModel.o moc_SubaddressAccountModel.cpp
  2158. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/SubaddressAccount.h -o moc_SubaddressAccount.cpp
  2159. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_SubaddressAccount.o moc_SubaddressAccount.cpp
  2160. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/libwalletqt/UnsignedTransaction.h -o moc_UnsignedTransaction.cpp
  2161. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_UnsignedTransaction.o moc_UnsignedTransaction.cpp
  2162. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/main/MainApp.h -o moc_MainApp.cpp
  2163. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_MainApp.o moc_MainApp.cpp
  2164. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/qt/FutureScheduler.h -o moc_FutureScheduler.cpp
  2165. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_FutureScheduler.o moc_FutureScheduler.cpp
  2166. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/qt/ipc.h -o moc_ipc.cpp
  2167. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_ipc.o moc_ipc.cpp
  2168. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/qt/KeysFiles.h -o moc_KeysFiles.cpp
  2169. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_KeysFiles.o moc_KeysFiles.cpp
  2170. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/qt/MoneroSettings.h -o moc_MoneroSettings.cpp
  2171. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_MoneroSettings.o moc_MoneroSettings.cpp
  2172. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/daemon/DaemonManager.h -o moc_DaemonManager.cpp
  2173. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_DaemonManager.o moc_DaemonManager.cpp
  2174. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/QR-Code-scanner/QrScanThread.h -o moc_QrScanThread.cpp
  2175. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_QrScanThread.o moc_QrScanThread.cpp
  2176. /opt/android/Qt-5.15/bin/moc -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /opt/android/monero-gui/build/moc_predefs.h -I/opt/android/Qt-5.15/mkspecs/android-clang -I/opt/android/monero-gui -I/opt/android/monero-gui/monero/include -I/opt/android/monero-gui/src/libwalletqt -I/opt/android/monero-gui/src/QR-Code-generator -I/opt/android/monero-gui/src -I/opt/android/monero-gui/monero/src -I/opt/android/monero-gui/monero/external/easylogging++ -I/opt/android/monero-gui/monero/contrib/epee/include -I/opt/android/monero-gui/src/QR-Code-scanner -I/opt/android/ZBar/include -I/opt/android/Qt-5.15/include -I/opt/android/Qt-5.15/include/QtSvg -I/opt/android/Qt-5.15/include/QtWidgets -I/opt/android/Qt-5.15/include/QtGui/5.15.1 -I/opt/android/Qt-5.15/include/QtGui/5.15.1/QtGui -I/opt/android/Qt-5.15/include/QtQuick -I/opt/android/Qt-5.15/include/QtMultimedia -I/opt/android/Qt-5.15/include/QtGui -I/opt/android/Qt-5.15/include/QtQmlModels -I/opt/android/Qt-5.15/include/QtQml -I/opt/android/Qt-5.15/include/QtNetwork -I/opt/android/Qt-5.15/include/QtCore/5.15.1 -I/opt/android/Qt-5.15/include/QtCore/5.15.1/QtCore -I/opt/android/Qt-5.15/include/QtCore -I. -I/usr/include/c++/10 -I/usr/include/x86_64-linux-gnu/c++/10 -I/usr/include/c++/10/backward -I/usr/local/include -I/opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/9.0.8/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../src/QR-Code-scanner/QrCodeScanner.h -o moc_QrCodeScanner.cpp
  2177. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -c -target aarch64-linux-android28 -fno-limit-debug-info -fPIC -fstack-protector-strong -DANDROID -fPIC -fstack-protector -fstack-protector-strong -Werror -Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DDISABLE_PASS_STRENGTH_METER -DWITH_SCANNER -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../monero-gui -I. -I/opt/android/monero-gui/monero/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../monero/src -I../monero/external/easylogging++ -I../monero/contrib/epee/include -I../src/QR-Code-scanner -I../../ZBar/include -I../../Qt-5.15/include -I../../Qt-5.15/include/QtSvg -I../../Qt-5.15/include/QtWidgets -I../../Qt-5.15/include/QtGui/5.15.1 -I../../Qt-5.15/include/QtGui/5.15.1/QtGui -I../../Qt-5.15/include/QtQuick -I../../Qt-5.15/include/QtMultimedia -I../../Qt-5.15/include/QtGui -I../../Qt-5.15/include/QtQmlModels -I../../Qt-5.15/include/QtQml -I../../Qt-5.15/include/QtNetwork -I../../Qt-5.15/include/QtCore/5.15.1 -I../../Qt-5.15/include/QtCore/5.15.1/QtCore -I../../Qt-5.15/include/QtCore -I. -I../../Qt-5.15/mkspecs/android-clang -o moc_QrCodeScanner.o moc_QrCodeScanner.cpp
  2178. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -target aarch64-linux-android28 -fno-limit-debug-info -fstack-protector -fstack-protector-strong -static-libgcc -static-libstdc++ -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,--build-id=sha1 -Wl,--no-undefined -Wl,-z,noexecstack -shared -o release/bin/monero-wallet-gui main.o filter.o clipboardAdapter.o oscursor.o WalletManager.o WalletListenerImpl.o Wallet.o PassphraseHelper.o PendingTransaction.o TransactionHistory.o TransactionInfo.o QRCodeImageProvider.o oshelper.o TranslationManager.o TransactionHistoryModel.o TransactionHistorySortFilterModel.o BitBuffer.o QrCode.o QrSegment.o AddressBookModel.o AddressBook.o SubaddressModel.o Subaddress.o SubaddressAccountModel.o SubaddressAccount.o UnsignedTransaction.o Logger.o MainApp.o FutureScheduler.o ipc.o KeysFiles.o utils.o MoneroSettings.o TailsOS.o DaemonManager.o QrScanThread.o QrCodeScanner.o LeftPanel_qml.o version_js.o MiddlePanel_qml.o main_qml.o wizard_WizardLanguage_qml.o wizard_WizardModeRemoteNodeWarning_qml.o wizard_WizardAskPassword_qml.o wizard_WizardModeSelection_qml.o wizard_WizardNav_qml.o wizard_WizardSummary_qml.o wizard_WizardRestoreWallet1_qml.o wizard_WizardCreateWallet1_qml.o wizard_WizardRestoreWallet2_qml.o wizard_WizardRestoreWallet3_qml.o wizard_WizardCreateWallet2_qml.o wizard_WizardWalletInput_qml.o wizard_WizardRestoreWallet4_qml.o wizard_WizardCreateWallet3_qml.o wizard_WizardCreateWallet4_qml.o wizard_WizardMenuItem_qml.o wizard_WizardHeader_qml.o wizard_WizardModeBootstrap_qml.o wizard_WizardCreateDevice1_qml.o wizard_WizardDaemonSettings_qml.o wizard_WizardController_qml.o wizard_WizardOpenWallet1_qml.o wizard_WizardHome_qml.o wizard_WizardSummaryItem_qml.o components_TipItem_qml.o components_ContextMenuItem_qml.o components_TextPlainArea_qml.o components_RadioButton_qml.o components_InlineButton_qml.o components_DaemonManagerDialog_qml.o components_AdvancedOptionsItem_qml.o components_TextPlain_qml.o components_SettingsListItem_qml.o components_Slider_qml.o components_TitleBar_qml.o components_NetworkStatusItem_qml.o components_LabelButton_qml.o components_PasswordDialog_qml.o components_CheckBox_qml.o components_StandardDialog_qml.o components_UpdateDialog_qml.o components_Style_qml.o components_LabelSubheader_qml.o components_ContextMenu_qml.o components_WarningBox_qml.o components_InputDialog_qml.o components_IconButton_qml.o components_LineEdit_qml.o components_Label_qml.o components_DatePicker_qml.o components_StandardDropdown_qml.o components_InputMulti_qml.o components_ProcessingSplash_qml.o components_MenuButtonDivider_qml.o components_RemoteNodeEdit_qml.o components_TextBlock_qml.o components_StandardButton_qml.o components_ProgressBar_qml.o components_MenuButton_qml.o components_DevicePassphraseDialog_qml.o components_LineEditMulti_qml.o components_LanguageSidebar_qml.o components_CheckBox2_qml.o components_QRCodeScanner_qml.o components_Input_qml.o components_effects_GradientBackground_qml.o components_effects_ImageMask_qml.o components_effects_ColorTransition_qml.o fonts_FontAwesome_Object_qml.o fonts_FontAwesome_FontAwesome_qml.o js_Windows_js.o js_Utils_js.o js_Wizard_js.o js_TxUtils_js.o pages_Transfer_qml.o pages_Mining_qml.o pages_Sign_qml.o pages_Account_qml.o pages_AddressBook_qml.o pages_Keys_qml.o pages_History_qml.o pages_SharedRingDB_qml.o pages_Receive_qml.o pages_TxKey_qml.o pages_settings_SettingsInfo_qml.o pages_settings_Navbar_qml.o pages_settings_Settings_qml.o pages_settings_SettingsLog_qml.o pages_settings_SettingsLayout_qml.o pages_settings_SettingsWallet_qml.o pages_settings_SettingsNode_qml.o pages_merchant_MerchantTitlebar_qml.o pages_merchant_Merchant_qml.o pages_merchant_MerchantCheckbox_qml.o pages_merchant_MerchantTrackingList_qml.o qmlcache_loader.o qrc_translations.o qrc_qml_qmlcache.o moc_filter.o moc_clipboardAdapter.o moc_oscursor.o moc_WalletManager.o moc_Wallet.o moc_PendingTransaction.o moc_TransactionHistory.o moc_TransactionInfo.o moc_Transfer.o moc_NetworkType.o moc_oshelper.o moc_TranslationManager.o moc_TransactionHistoryModel.o moc_TransactionHistorySortFilterModel.o moc_AddressBookModel.o moc_AddressBook.o moc_SubaddressModel.o moc_Subaddress.o moc_SubaddressAccountModel.o moc_SubaddressAccount.o moc_UnsignedTransaction.o moc_MainApp.o moc_FutureScheduler.o moc_ipc.o moc_KeysFiles.o moc_MoneroSettings.o moc_DaemonManager.o moc_QrScanThread.o moc_QrCodeScanner.o -L/usr/local/ssl/lib -L/opt/android/monero-gui/monero/lib -lwallet_merged -lepee -leasylogging -lrandomx -lzbarjni -liconv -Wl,-Bstatic -lunbound -lboost_serialization -lboost_thread -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_chrono -lboost_program_options -lssl -llmdb -lsodium -lcrypto -Wl,-Bdynamic /opt/android/Qt-5.15/lib/libQt5Svg_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5Widgets_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5Quick_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5Multimedia_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5Gui_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5QmlModels_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5Qml_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5Network_arm64-v8a.so /opt/android/Qt-5.15/lib/libQt5Core_arm64-v8a.so -lGLESv2 -llog -lz -lm -ldl -lc
  2179. clang++: warning: argument unused during compilation: '-pie' [-Wunused-command-line-argument]
  2180. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lwallet_merged
  2181. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lzbarjni
  2182. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -liconv
  2183. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_serialization
  2184. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_thread
  2185. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_system
  2186. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_date_time
  2187. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_filesystem
  2188. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_regex
  2189. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_chrono
  2190. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lboost_program_options
  2191. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lssl
  2192. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lsodium
  2193. /opt/android/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: cannot find -lcrypto
  2194. clang++: error: linker command failed with exit code 1 (use -v to see invocation)
  2195. make: *** [Makefile:658: release/bin/monero-wallet-gui] Error 1
  2196. The command '/bin/sh -c cd ${WORKDIR}/monero-gui && CMAKE_INCLUDE_PATH="${PREFIX}/include" CMAKE_LIBRARY_PATH="${PREFIX}/lib" CC=aarch64-linux-android28-clang CXX=aarch64-linux-android28-clang++ ./build.sh release-android -j26' returned a non-zero code: 2
  2197.  
Advertisement
Add Comment
Please, Sign In to add comment