Merge branch 'GP-0_ryanmkurtz_PR-8917_mildsunrise_pyghidra-jvmargs'

This commit is contained in:
Ryan Kurtz
2026-02-03 12:28:37 -05:00
2 changed files with 3 additions and 1 deletions

View File

@@ -573,6 +573,8 @@ __3.1.0__
all of its imported modules again. This default behavior can be disabled by setting the
`pyghidra.sys.modules.restore.disable` Java system property to `true`, which can be done in the
`support/launch.properties` file.
* `ghidra_launch.py` now correctly prioritizes user-defined JVM properties higher than those defined
in `support/launch.properties`.
__3.0.2__
* Fixed an issue that prevented [`pyghidra.analysis_properties()`](#pyghidraanalysis_properties)

View File

@@ -113,6 +113,6 @@ if __name__ == "__main__":
_, remaining = parser.parse_known_args(namespace=args)
launcher = GhidraLauncher(False, args.class_name, args.gui, install_dir=args.install_dir)
launcher.vm_args = args.jvm_args + launcher.vm_args
launcher.vm_args = launcher.vm_args + args.jvm_args
launcher.args = remaining
launcher.start()