Match # of parallel build processes to number of CPUs for native builds
This commit is contained in:
parent
08ac64cd63
commit
373eaeae30
@ -65,7 +65,7 @@ task copySourceToBuild(type: Copy, dependsOn:[copyTremorFiles, copyStbiFiles, ge
|
||||
task buildNativeLib(type: Exec, dependsOn: copySourceToBuild) {
|
||||
workingDir decodeBuildDir
|
||||
executable rootProject.ndkCommandPath
|
||||
args '-j8'
|
||||
args "-j" + Runtime.runtime.availableProcessors()
|
||||
}
|
||||
|
||||
task updatePreCompiledLibs(type: Copy, dependsOn: buildNativeLib) {
|
||||
|
@ -86,7 +86,7 @@ task buildOpenAlSoftNativeLib(type: Exec, dependsOn: generateOpenAlSoftHeaders)
|
||||
// println "ndkCommandPath: " + project.ndkCommandPath
|
||||
workingDir openalsoftBuildDir
|
||||
executable rootProject.ndkCommandPath
|
||||
args '-j8'
|
||||
args "-j" + Runtime.runtime.availableProcessors()
|
||||
}
|
||||
|
||||
task updatePreCompiledOpenAlSoftLibs(type: Copy, dependsOn: buildOpenAlSoftNativeLib) {
|
||||
|
@ -161,7 +161,7 @@ task buildBulletNativeLib(type: Exec, dependsOn: generateNativeHeaders) {
|
||||
// println "buildBulletNativeLib rootProject.ndkCommandPath: " + rootProject.ndkCommandPath
|
||||
workingDir ndkWorkingPath
|
||||
executable rootProject.ndkCommandPath
|
||||
args "-j8"
|
||||
args "-j" + Runtime.runtime.availableProcessors()
|
||||
}
|
||||
|
||||
//task updatePreCompiledBulletLibs(type: Copy, dependsOn: generateNativeHeaders) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user