-
Bug
-
Resolution: Fixed
-
2.1.1462 (Windows) / 2.1.1433 (Mac OS) / 2.1.1431 (Linux)
-
None
-
java -version
{code:java}
java version "1.8.0_181"
Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)
{code}
System info
{code:java}
Model Name: MacBook Pro
Model Identifier: MacBookPro11,2
Processor Name: Intel Core i7
Processor Speed: 2,2 GHz
Number of Processors: 1
Total Number of Cores: 4
L2 Cache (per Core): 256 KB
L3 Cache: 6 MB Memory: 16 GB
Darwin 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 x86_64
{code}java -version {code:java} java version "1.8.0_181" Java(TM) SE Runtime Environment (build 1.8.0_181-b13) Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode) {code} System info {code:java} Model Name: MacBook Pro Model Identifier: MacBookPro11,2 Processor Name: Intel Core i7 Processor Speed: 2,2 GHz Number of Processors: 1 Total Number of Cores: 4 L2 Cache (per Core): 256 KB L3 Cache: 6 MB Memory: 16 GB Darwin 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 x86_64 {code}
-
Unconfirmed
The launcher adds the "-Xss1M" jvm argument to systems that are 64bit.
It's from the version manifest for 1.13.2 where there is a rule for 32bit systems to use this argument. I don't know but guessing is a matching issue.
{ rules: [ { action: "allow", os: { arch: "x86" } } ], value: "-Xss1M" },
Jvm part taken from debug output in launcher_log.txt (formatted the text a bit)
[0111/214602:INFO:ClientHandler.cpp(859)] {"jvm": [ "-XstartOnFirstThread", "-Xss1M", "-Djava.library.path=${natives_directory}", "-Dminecraft.launcher.brand=${launcher_name}", "-Dminecraft.launcher.version=${launcher_version}", ...
This isn't a major issue but reduces the available stack size on the 64bit platforms without needing it.