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.
build_platform
1 parent 2a45049 commit fd03775Copy full SHA for fd03775
pythonforandroid/util.py
@@ -8,8 +8,9 @@
8
from pythonforandroid.logger import (logger, Err_Fore, error, info)
9
10
11
-build_platform = '{system}-{machine}'.format(
12
- system=uname().system, machine=uname().machine.lower())
+build_platform = "{system}-{machine}".format(
+ system=uname().system, machine=uname().machine
13
+).lower()
14
"""the build platform in the format `system-machine`. We use
15
this string to define the right build system when compiling some recipes or
16
to get the right path for clang compiler"""
0 commit comments