Just installed this from scratch (no prior versions were installed). Getting the following errors when attempting to start:
OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
Unrecognized VM option 'PermSize=192m'
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
Pinned Comments
pschichtel commented on 2022-12-11 15:35 (UTC) (edited on 2023-05-06 11:18 (UTC) by pschichtel)
0.95.1a_RC6-2 changed a bunch things that might need manual corrections after upgrading from earlier version:
mv "$HOME/.starsector" "$HOME/.local/share/starsector"
should do the trick$HOME/.config/starsector/startup.sh
which supports two variables (bash arrays):jvm_args
andprogram_args
. So e.g. if you customized the memory settings in the start script, you might want to move the changes to either of these variables (e.g. like this:jvm_args=(-Xms1536m -Xmx1536m -Xss2048k)
).