mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 01:39:21 +02:00
GP-1106: Platform naming convention now supports different
architectures. Support for building on ARM.
This commit is contained in:
parent
b55d1049d4
commit
00533b2869
43 changed files with 523 additions and 461 deletions
|
@ -364,8 +364,8 @@ task assembleDistribution (type: Copy) {
|
|||
* these have already been built and are located in the proper location.
|
||||
*
|
||||
*********************************************************************************/
|
||||
project.OS_NAMES.each { platform ->
|
||||
task ("assembleDistribution_$platform", type: Copy ) {
|
||||
project.PLATFORMS.each { platform ->
|
||||
task ("assembleDistribution_${platform.name}", type: Copy ) {
|
||||
|
||||
// delete the gradle ziptree temp directory because of gradle bug not cleaning up its temp files.
|
||||
delete rootProject.file("build/tmp/expandedArchives")
|
||||
|
@ -480,10 +480,9 @@ task createInstallationZip(type: Zip) { t ->
|
|||
dependsOn "assembleDistribution_$currentPlatform"
|
||||
|
||||
if (project.hasProperty("allPlatforms")) {
|
||||
dependsOn ":assembleDistribution_win32"
|
||||
dependsOn ":assembleDistribution_win64"
|
||||
dependsOn ":assembleDistribution_linux64"
|
||||
dependsOn ":assembleDistribution_osx64"
|
||||
project.PLATFORMS.each { platform ->
|
||||
dependsOn ":assembleDistribution_${platform.name}"
|
||||
}
|
||||
}
|
||||
|
||||
if (project.hasProperty("allPlatforms")) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue