summaryrefslogtreecommitdiff
path: root/python/build/project.py
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2016-10-26 11:55:38 +0200
committerMax Kellermann <max@musicpd.org>2016-10-26 17:00:17 +0200
commit307964d8741d9d37e0ba54c6ddcbc1c84a4a17e1 (patch)
tree78d8063947cf6af2eb67543572de06d9d9a7e473 /python/build/project.py
parentf3dd50de871828a87375477d884259bd5950a6b4 (diff)
android/build.py: always build with clang
Support for GCC has been dropped from NDK r13. Let's switch everything to clang before they really remove GCC completely.
Diffstat (limited to 'python/build/project.py')
-rw-r--r--python/build/project.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/build/project.py b/python/build/project.py
index 9a04e9ce4..c79c4f5a1 100644
--- a/python/build/project.py
+++ b/python/build/project.py
@@ -7,7 +7,7 @@ from build.tar import untar
class Project:
def __init__(self, url, md5, installed, name=None, version=None,
base=None,
- use_cxx=False, use_clang=False):
+ use_cxx=False):
if base is None:
basename = os.path.basename(url)
m = re.match(r'^(.+)\.(tar(\.(gz|bz2|xz|lzma))?|zip)$', basename)
@@ -29,7 +29,6 @@ class Project:
self.installed = installed
self.use_cxx = use_cxx
- self.use_clang = use_clang
def download(self, toolchain):
return download_and_verify(self.url, self.md5, toolchain.tarball_path)