Skip to content

Commit

Permalink
ui/qt: Warn if Android cpu_family is unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbheek committed May 14, 2020
1 parent bcf29ed commit 84cfa2b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mesonbuild/dependencies/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,9 @@ def _get_modules_lib_suffix(self, is_debug):
suffix += '_armeabi-v7a'
elif cpu_family == 'aarch64':
suffix += '_arm64-v8a'
else:
mlog.warning('Android target arch {!r} for Qt5 is unknown, '
'module detection may not work'.format(cpu_family))
return suffix

def _link_with_qtmain(self, is_debug, libdir):
Expand Down

0 comments on commit 84cfa2b

Please sign in to comment.