1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

Always run ndk-build with -j1

This commit is contained in:
Daniel Martí 2014-03-24 10:09:12 +01:00
parent eee7f8b4f6
commit eb343fe212

View File

@ -486,9 +486,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
jni_components = thisbuild.get('buildjni')
if jni_components == ['yes']:
jni_components = ['']
jobs = multiprocessing.cpu_count()
ndkbuild = os.path.join(config['ndk_path'], "ndk-build")
cmd = [ndkbuild, "-j"+str(jobs)]
cmd = [ os.path.join(config['ndk_path'], "ndk-build", "-j1" ]
for d in jni_components:
logging.info("Building native code in '%s'" % d)
manifest = root_dir + '/' + d + '/AndroidManifest.xml'