We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5dceadc + e47f3b3 commit 9933ee4Copy full SHA for 9933ee4
conanfile.py
@@ -168,11 +168,11 @@ def _get_target(self):
168
elif self.settings.os == "Android":
169
target = {"armv7": "android-arm",
170
"armv7hf": "android-arm",
171
- "armv8": "android64-arm64",
+ "armv8": "android-arm64",
172
"x86": "android-x86",
173
"x86_64": "android-x86_64",
174
"mips": "android-mips",
175
- "mips64": "anroid-mips64"}.get(str(self.arch), None)
+ "mips64": "android-mips64"}.get(str(self.arch), None)
176
if not target:
177
raise Exception("Unsupported arch for android")
178
elif self.settings.os == "SunOS":
0 commit comments