Skip to content

Commit 10e53bc

Browse files
Update __init__.py
1 parent 9429fef commit 10e53bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/recipes/python3/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ def build_arch(self, arch):
7272
platform_dir = join(self.ctx.ndk_dir, 'platforms', platform_name, arch.platform_dir)
7373
toolchain = '{android_host}-4.9'.format(android_host=arch.toolchain_prefix)
7474
toolchain = join(self.ctx.ndk_dir, 'toolchains', toolchain, 'prebuilt', 'linux-x86_64')
75-
75+
7676
target_data = arch.command_prefix.split('-')
7777
if target_data[0] == 'arm':
7878
target_data[0] = 'armv7a'
7979
target = '-'.join([target_data[0], 'none', target_data[1], target_data[2]])
80-
80+
8181
CC = '{clang} -target {target} -gcc-toolchain {toolchain}'.format(
8282
clang=join(self.ctx.ndk_dir, 'toolchains', 'llvm', 'prebuilt', 'linux-x86_64', 'bin', 'clang'),
8383
target=target,

0 commit comments

Comments
 (0)