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 85d9d23 commit 3933160Copy full SHA for 3933160
pythonforandroid/recipes/atom/__init__.py
@@ -8,5 +8,16 @@ class AtomRecipe(CppCompiledComponentsPythonRecipe):
8
hostpython_prerequisites = ['cppy']
9
depends = ['setuptools']
10
11
+ def build_arch(self, arch):
12
+ if arch.arch in ["armeabi-v7a", "x86"]:
13
+ warning("*******************************************")
14
+ warning("******** atom recipe was not built ********")
15
+ warning("* atom does not support 32 bit platforms **")
16
+ warning("*** Expect the following run time error ***")
17
+ warning("ModuleNotFoundError: No module named 'atom'")
18
19
+ else:
20
+ super().build_arch(arch)
21
+
22
23
recipe = AtomRecipe()
0 commit comments