mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
542c2aa617
2 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
||||||
# Increase maximum Gradle heap size (default is 1G)
|
# Increase maximum Gradle heap size (default is 1G)
|
||||||
# And fix build in locales with non-default capitalizations (e.g. tr_TR)
|
# And fix build in locales with non-default capitalizations (e.g. tr_TR)
|
||||||
org.gradle.jvmargs=-Xmx2G -Duser.language=en -Duser.country=US
|
org.gradle.jvmargs=-Xmx2G -Duser.language=en -Duser.country=US
|
||||||
|
|
||||||
|
# Preserve file system permissions in archives (Gradle 9 uses fixed permissions by default)
|
||||||
|
org.gradle.archives.use-file-system-permissions=true
|
||||||
|
|
||||||
|
# Set Ghidra protobuf version
|
||||||
ghidra.protobuf.java.version=4.31.0
|
ghidra.protobuf.java.version=4.31.0
|
||||||
|
|
2
gradlew
vendored
2
gradlew
vendored
|
@ -128,7 +128,7 @@ fi
|
||||||
# Read application properties
|
# Read application properties
|
||||||
while IFS='=' read -r key value
|
while IFS='=' read -r key value
|
||||||
do
|
do
|
||||||
key=$(echo $key | tr '.' '_')
|
key=$(echo $key | tr '.-' '_')
|
||||||
eval ${key}=\${value}
|
eval ${key}=\${value}
|
||||||
done < "${GHIDRA_HOME}/Ghidra/application.properties"
|
done < "${GHIDRA_HOME}/Ghidra/application.properties"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue