8000 Remove --target (was needed on a gcc toolchain) · kivy/python-for-android@e27788d · GitHub
[go: up one dir, main page]

Skip to content

Commit e27788d

Browse files
committed
Remove --target (was needed on a gcc toolchain)
1 parent 712b100 commit e27788d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

pythonforandroid/recipes/libvpx/__init__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
import sh
66

77

8-
TARGETS = {
9-
'armeabi-v7a': 'armv7-android-gcc',
10-
'arm64-v8a': 'arm64-android-gcc',
11-
'x86': 'x86-android-gcc',
12-
'x86_64': 'x86_64-android-gcc',
13-
}
14-
15-
168
class VPXRecipe(Recipe):
179
version = '1.11.0'
1810
url = 'https://github.com/webmproject/libvpx/archive/v{version}.tar.gz'
@@ -31,7 +23,6 @@ def build_arch(self, arch):
3123
with current_directory(self.get_build_dir(arch.arch)):
3224
env = self.get_recipe_env(arch)
3325
flags = [
34-
'--target=' + TARGETS[arch.arch],
3526
'--enable-pic',
3627
'--enable-vp8',
3728
'--enable-vp9',

0 commit comments

Comments
 (0)
0