8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 326252f commit b774e6cCopy full SHA for b774e6c
pythonforandroid/toolchain.py
@@ -344,7 +344,10 @@ def get_env(self):
344
cc = find_executable('{toolchain_prefix}-gcc'.format(
345
toolchain_prefix=toolchain_prefix), path=environ['PATH'])
346
if cc is None:
347
- warning('Couldn\'t find executable for CC. Exiting.')
+ warning('Couldn\'t find executable for CC. This indicates a '
348
+ 'problem locating the {} executable in the Android '
349
+ 'NDK, not that you don\'t have a normal compiler '
350
+ 'installed. Exiting.')
351
exit(1)
352
353
env['CC'] = '{toolchain_prefix}-gcc {cflags}'.format(
0 commit comments