Could not reserve enough space for 3145728kb object heap ошибка

Sometimes, this error indicates that physical memory and swap on the server actually are fully utilized!

I was seeing this problem recently on a server running RedHat Enterprise Linux 5.7 with 48 GB of RAM. I found that even just running

java -version

caused the same error, which established that the problem was not specific to my application.

Running

cat /proc/meminfo

reported that MemFree and SwapFree were both well under 1% of the MemTotal and SwapTotal values, respectively:

MemTotal:     49300620 kB
MemFree:        146376 kB
...
SwapTotal:     4192956 kB
SwapFree:         1364 kB

Stopping a few other running applications on the machine brought the free memory figures up somewhat:

MemTotal:     49300620 kB
MemFree:       2908664 kB
...
SwapTotal:     4192956 kB
SwapFree:      1016052 kB

At this point, a new instance of Java would start up okay, and I was able to run my application.

(Obviously, for me, this was just a temporary solution; I still have an outstanding task to do a more thorough examination of the processes running on that machine to see if there’s something that can be done to reduce the nominal memory utilization levels, without having to resort to stopping applications.)

In this post, we will see an error(Could not reserve enough space for 2097152kb object heap object heap) which you might have encountered while dealing with JVM.We will see how can we fix this issue.

Table of Contents

  • Heap size
    • Maximum heap size
  • Cause 1: Did not specify heap size
    • Fix 1
  • Cause 2: Too large Xmx value
    • Fix 2
  • Cause 3: Specifying large heap size more than physical memory
    • Fix 3
    • Set _JAVA_OPTIONS environment variable
      • In Linux
      • In Window
  • Could not reserve enough space for 2097152kb object heap
    • Apache cordova
    • Minecraft
    • Jfrog artifactory
  • Conclusion

error occurred during initialization of vm could not reserve enough space for 2097152kb object heap is generally raised when Java process can not create java virtual machine due to memory limitations.

Before we go through causes and fixes for this issue, let’s go through few basic things.

Heap size

Heap size is memory allocation space for storing java objects at run time. This heap size can have minimum and maxiumn heap size. You can specify minimum and maximum size using Xmx and Xms VM arguments.

Maximum heap size

The maximum possible heap size can be determined by available memory space. It is different on 32 bit and 64 bit as follows.

  1. 2^32 (~4GB) on 32 bit JVM
  2. 2^64 (~16EB) on 64 bit JVM.

In general, you will get 1.4-1.6 GB on 32 bit windows and approximately 3GB on on 32 bit linux.

If you require large heap, then you should generally use 64 bit JVM.

Cause 1: Did not specify heap size

Let’s say you run your java program without specifying any heap size and you get below error.

Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

You will get this error more often in 32 bit JVM rather than 64-bit JVM

Reason
32-bit Java requires contiguous free space in memory to run. If you specify a large heap size, there may not be so much contiguous free space in memory even if you have much more free space available than necessary.
Installing 64-bit version might solve this issue in this case.

Fix 1

You can fix this error by running Java with lower heap size such as -Xmx512m.

java Xmx512M MyApplication

Cause 2: Too large Xmx value

If you specify too large memory with -Xmx option on 32 bit VM, you may also get this error.
For example:
Let’s say you are getting an error with below execution.

java Xms1536M Xmx1536M MyApplication

Fix 2

You might not have enough contiguous free space in memory.You can run the application with slightly lower heap size to resolve the issue.

javaXms1336M Xmx1336M MyApplication

Cause 3: Specifying large heap size more than physical memory

If you specify large heap size more than physical memory available on 64-bit or 32-bit  machine, you will get this error.
For example:
Let’s say You have 3 GB RAM on your machine and you are executing below command, you will get this error.

java Xms4096M Xmx4096M MyApplication

Fix 3

You can run the application with heap size which is less than your physical memory.

javaXms2048M Xmx2048M MyApplication

Sometimes above solutions might not work.

Set _JAVA_OPTIONS environment variable

So you can set _JAVA_OPTIONS as the environment variable.

In Linux

-bash-3.2$ export _JAVA_OPTIONS =»-Xmx512M»
-bash-3.2$ javac MyApp.java

In Window

Go to Start->Control Panel->System->Advanced(tab)->Environment Variables->System
Variables->New: Variable name: _JAVA_OPTIONS
Variable value: -Xmx512M

💡 Did you know?

JDK_JAVA_OPTIONS is prefered environment variable from Java 9+ onward to specify Java options. It will be ignored in the version lesser than Java 9.

You might get an specific error Could not reserve enough space for 2097152kb object heap in case you are using any tool. It simply means that JVM is not able to acquire 2 GB heap space which is required by the tool by default.

Apache cordova

Apache Cordova is a mobile application development framework originally created by Nitobi.
If you are getting this error on Apache cordova, here are solutions.

  1. Switch from 32 bit JVM to 64 bit JVM
  2. set _JAVA_OPTIONS environment variable with -Xmx512M
  3. Change

    args.push(‘-Dorg.gradle.jvmargs=-Xmx2048m’)

    to  

    args.push(‘-Dorg.gradle.jvmargs=-Xmx1024m’);

    on the following files located on your machine.

    project-folderplatformsandroidcordovalibbuildersbuilders.js
    project-folderplatformsandroidcordovalibbuildersGradleBuilder.js
    project-folderplatformsandroidcordovalibbuildersStudioBuilder.js

Minecraft

If you are getting this error, while launching Minecraft game, then you need to switch from 32 bit JVM to 64 bit JVM.

Jfrog artifactory

If you are using JFrom artifactory as artifact life-cycle management tool and getting Could not reserve enough space for 2097152kb object heap while launching it.
Go to bin directory of your JFrog Artifactory installation, change following line in arifactory.bat file.

set JAVA_OPTIONS=-server Xms512m Xmx2g Xss256k XX:+UseG1GC

to

set JAVA_OPTIONS=-server Xms512m Xmx1024m Xss256k XX:+UseG1GC

This should resolve this error for JFrog Artifactory installation.

Conclusion

  • If you might have installed 32 bit JVM in 64 bit machine.Upon uninstalling that version and installing 64 bit version of Java
  • You might have provided too large heap size which might be greater than physical memory. In this case, you need to reduce heap size of JVM.
  • If above solution does not work, you can set JAVA_OPTS as the environment variable to solve this issue. If you set JAVA_OPTS environment variable, then each JVM initialization will automatically use configuration from this environment variable

I hope this will resolve your issue with error occurred during initialization of vm could not reserve enough space for 2097152kb object heap.


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    Jun 9, 2015


    Gafwmn2


    • View User Profile


    • View Posts


    • Send Message



    View Gafwmn2's Profile

    • Out of the Water
    • Join Date:

      2/4/2014
    • Posts:

      9
    • Minecraft:

      Gafwmn
    • Member Details

    Ok, getting a problem launching. I am met with the following message: Error occurred during initialization of VM. Could not reserve enough space for 3145728KB object heap.

    and here is this…….

    [11:10:03 INFO]: Minecraft Launcher 1.6.11 (through bootstrap 5) started on windows…
    [11:10:03 INFO]: Current time is Jun 9, 2015 11:10:03 AM
    [11:10:03 INFO]: System.getProperty(‘os.name’) == ‘Windows 7’
    [11:10:03 INFO]: System.getProperty(‘os.version’) == ‘6.1’
    [11:10:03 INFO]: System.getProperty(‘os.arch’) == ‘x86’
    [11:10:03 INFO]: System.getProperty(‘java.version’) == ‘1.8.0_45’
    [11:10:03 INFO]: System.getProperty(‘java.vendor’) == ‘Oracle Corporation’
    [11:10:03 INFO]: System.getProperty(‘sun.arch.data.model’) == ’32’
    [11:10:03 INFO]: proxy == DIRECT
    [11:10:03 INFO]: JFX is already initialized
    [11:10:03 INFO]: Refreshing local version list…
    [11:10:03 INFO]: Refreshing remote version list…
    [11:10:04 INFO]: Refresh complete.
    [11:10:04 INFO]: Loaded 1 profile(s); selected ‘Gafwmn’
    [11:10:04 INFO]: Refreshing auth…
    [11:10:04 INFO]: Logging in with access token
    [11:10:08 INFO]: Getting syncinfo for selected version
    [11:10:08 INFO]: Queueing library & version downloads
    [11:10:09 INFO]: Download job ‘Version & Libraries’ started (16 threads, 34 files)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Download job ‘Resources’ skipped as there are no files to download
    [11:10:09 INFO]: Job ‘Resources’ finished successfully (took 0:00:00.000)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:12 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:38 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’: Used own copy as it matched etag
    [11:10:38 INFO]: Job ‘Version & Libraries’ finished successfully (took 0:00:29.469)
    [11:10:38 INFO]: Launching game
    [11:10:38 INFO]: Unpacking natives to C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079
    [11:10:39 INFO]: Launching in C:UsersDrewsAppDataRoaming.minecraft
    [11:10:39 INFO]: Half command: C:Program Files (x86)Javajre1.8.0_45binjavaw.exe -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3G -Djava.library.path=C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079 -cp C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar;C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar net.minecraft.client.main.Main
    [11:10:39 INFO]: Looking for orphaned versions to clean up…
    [11:10:39 ERROR]: Game ended with bad state (exit code 1)
    [11:10:39 INFO]: Ignoring visibility rule and showing launcher due to a game crash
    [11:10:39 INFO]: Looking for old natives & assets to clean up…
    [11:10:39 INFO]: Deleting C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079
    [11:15:45 INFO]: Getting syncinfo for selected version
    [11:15:45 INFO]: Queueing library & version downloads
    [11:15:45 INFO]: Download job ‘Version & Libraries’ started (16 threads, 34 files)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Download job ‘Resources’ skipped as there are no files to download
    [11:15:46 INFO]: Job ‘Resources’ finished successfully (took 0:00:00.000)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:16:14 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’: Used own copy as it matched etag
    [11:16:14 INFO]: Job ‘Version & Libraries’ finished successfully (took 0:00:28.801)
    [11:16:14 INFO]: Launching game
    [11:16:14 INFO]: Unpacking natives to C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777
    [11:16:15 INFO]: Launching in C:UsersDrewsAppDataRoaming.minecraft
    [11:16:15 INFO]: Half command: C:Program Files (x86)Javajre1.8.0_45binjavaw.exe -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3G -Djava.library.path=C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777 -cp C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar;C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar net.minecraft.client.main.Main
    [11:16:15 INFO]: Looking for orphaned versions to clean up…
    [11:16:15 INFO]: Looking for old natives & assets to clean up…
    [11:16:17 ERROR]: Game ended with bad state (exit code 1)
    [11:16:17 INFO]: Ignoring visibility rule and showing launcher due to a game crash
    [11:16:17 INFO]: Deleting C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777

    Any ideas on what to do ?


  • #3

    Jun 9, 2015


    Kyrobi


    • View User Profile


    • View Posts


    • Send Message



    View Kyrobi's Profile

    • Tree Puncher
    • Join Date:

      6/7/2015
    • Posts:

      21
    • Member Details

    So how is he suppose to fix that? I had the same problem, but I just switched and played on a different computer.

    There are none you fool!


  • #4

    Jun 9, 2015


    Gafwmn2


    • View User Profile


    • View Posts


    • Send Message



    View Gafwmn2's Profile

    • Out of the Water
    • Join Date:

      2/4/2014
    • Posts:

      9
    • Minecraft:

      Gafwmn
    • Member Details

    and actually, I run 64 bit OS, unless you mean 32 for Java.

    I can provide system specs if that would help.

    And Gerbil wins the cookie…..yeah, needed to DL 64bit Java. All better now.

    Last edited by Gafwmn2: Jun 9, 2015

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


In this post, we will see an error(Could not reserve enough space for 2097152kb object heap object heap) which you might have encountered while dealing with JVM.We will see how can we fix this issue.

Table of Contents

  • Heap size
    • Maximum heap size
  • Cause 1: Did not specify heap size
    • Fix 1
  • Cause 2: Too large Xmx value
    • Fix 2
  • Cause 3: Specifying large heap size more than physical memory
    • Fix 3
    • Set _JAVA_OPTIONS environment variable
  • Could not reserve enough space for 2097152kb object heap
    • Apache cordova
    • Minecraft
    • Jfrog artifactory
  • Conclusion

error occurred during initialization of vm could not reserve enough space for 2097152kb object heap is generally raised when Java process can not create java virtual machine due to memory limitations.

Before we go through causes and fixes for this issue, let’s go through few basic things.

Heap size

Heap size is memory allocation space for storing java objects at run time. This heap size can have minimum and maxiumn heap size. You can specify minimum and maximum size using Xmx and Xms VM arguments.

Maximum heap size

The maximum possible heap size can be determined by available memory space. It is different on 32 bit and 64 bit as follows.

  1. 2^32 (~4GB) on 32 bit JVM
  2. 2^64 (~16EB) on 64 bit JVM.

In general, you will get 1.4-1.6 GB on 32 bit windows and approximately 3GB on on 32 bit linux.

If you require large heap, then you should generally use 64 bit JVM.

Cause 1: Did not specify heap size

Let’s say you run your java program without specifying any heap size and you get below error.

Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

You will get this error more often in 32 bit JVM rather than 64-bit JVM

Reason
32-bit Java requires contiguous free space in memory to run. If you specify a large heap size, there may not be so much contiguous free space in memory even if you have much more free space available than necessary.
Installing 64-bit version might solve this issue in this case.

Fix 1

You can fix this error by running Java with lower heap size such as -Xmx512m.

java Xmx512M MyApplication

Cause 2: Too large Xmx value

If you specify too large memory with -Xmx option on 32 bit VM, you may also get this error.
For example:
Let’s say you are getting an error with below execution.

java Xms1536M Xmx1536M MyApplication

Fix 2

You might not have enough contiguous free space in memory.You can run the application with slightly lower heap size to resolve the issue.

javaXms1336M Xmx1336M MyApplication

Cause 3: Specifying large heap size more than physical memory

If you specify large heap size more than physical memory available on 64-bit or 32-bit  machine, you will get this error.
For example:
Let’s say You have 3 GB RAM on your machine and you are executing below command, you will get this error.

java Xms4096M Xmx4096M MyApplication

Fix 3

You can run the application with heap size which is less than your physical memory.

javaXms2048M Xmx2048M MyApplication

Sometimes above solutions might not work.

Set _JAVA_OPTIONS environment variable

So you can set _JAVA_OPTIONS as the environment variable.

In Linux

-bash-3.2$ export _JAVA_OPTIONS =»-Xmx512M»
-bash-3.2$ javac MyApp.java

In Window

Go to Start->Control Panel->System->Advanced(tab)->Environment Variables->System
Variables->New: Variable name: _JAVA_OPTIONS
Variable value: -Xmx512M

💡 Did you know?

JDK_JAVA_OPTIONS is prefered environment variable from Java 9+ onward to specify Java options. It will be ignored in the version lesser than Java 9.

You might get an specific error Could not reserve enough space for 2097152kb object heap in case you are using any tool. It simply means that JVM is not able to acquire 2 GB heap space which is required by the tool by default.

Apache cordova

Apache Cordova is a mobile application development framework originally created by Nitobi.
If you are getting this error on Apache cordova, here are solutions.

  1. Switch from 32 bit JVM to 64 bit JVM
  2. set _JAVA_OPTIONS environment variable with -Xmx512M
  3. Change

    args.push(‘-Dorg.gradle.jvmargs=-Xmx2048m’)

    to  

    args.push(‘-Dorg.gradle.jvmargs=-Xmx1024m’);

    on the following files located on your machine.

    project-folderplatformsandroidcordovalibbuildersbuilders.js
    project-folderplatformsandroidcordovalibbuildersGradleBuilder.js
    project-folderplatformsandroidcordovalibbuildersStudioBuilder.js

Minecraft

If you are getting this error, while launching Minecraft game, then you need to switch from 32 bit JVM to 64 bit JVM.

Jfrog artifactory

If you are using JFrom artifactory as artifact life-cycle management tool and getting Could not reserve enough space for 2097152kb object heap while launching it.
Go to bin directory of your JFrog Artifactory installation, change following line in arifactory.bat file.

set JAVA_OPTIONS=-server Xms512m Xmx2g Xss256k XX:+UseG1GC

to

set JAVA_OPTIONS=-server Xms512m Xmx1024m Xss256k XX:+UseG1GC

This should resolve this error for JFrog Artifactory installation.

Conclusion

  • If you might have installed 32 bit JVM in 64 bit machine.Upon uninstalling that version and installing 64 bit version of Java
  • You might have provided too large heap size which might be greater than physical memory. In this case, you need to reduce heap size of JVM.
  • If above solution does not work, you can set JAVA_OPTS as the environment variable to solve this issue. If you set JAVA_OPTS environment variable, then each JVM initialization will automatically use configuration from this environment variable

I hope this will resolve your issue with error occurred during initialization of vm could not reserve enough space for 2097152kb object heap.


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    Jun 9, 2015


    Gafwmn2


    • View User Profile


    • View Posts


    • Send Message

    View Gafwmn2's Profile

    • Out of the Water
    • Join Date:

      2/4/2014
    • Posts:

      9
    • Minecraft:

      Gafwmn
    • Member Details

    Ok, getting a problem launching. I am met with the following message: Error occurred during initialization of VM. Could not reserve enough space for 3145728KB object heap.

    and here is this…….

    [11:10:03 INFO]: Minecraft Launcher 1.6.11 (through bootstrap 5) started on windows…
    [11:10:03 INFO]: Current time is Jun 9, 2015 11:10:03 AM
    [11:10:03 INFO]: System.getProperty(‘os.name’) == ‘Windows 7’
    [11:10:03 INFO]: System.getProperty(‘os.version’) == ‘6.1’
    [11:10:03 INFO]: System.getProperty(‘os.arch’) == ‘x86’
    [11:10:03 INFO]: System.getProperty(‘java.version’) == ‘1.8.0_45’
    [11:10:03 INFO]: System.getProperty(‘java.vendor’) == ‘Oracle Corporation’
    [11:10:03 INFO]: System.getProperty(‘sun.arch.data.model’) == ’32’
    [11:10:03 INFO]: proxy == DIRECT
    [11:10:03 INFO]: JFX is already initialized
    [11:10:03 INFO]: Refreshing local version list…
    [11:10:03 INFO]: Refreshing remote version list…
    [11:10:04 INFO]: Refresh complete.
    [11:10:04 INFO]: Loaded 1 profile(s); selected ‘Gafwmn’
    [11:10:04 INFO]: Refreshing auth…
    [11:10:04 INFO]: Logging in with access token
    [11:10:08 INFO]: Getting syncinfo for selected version
    [11:10:08 INFO]: Queueing library & version downloads
    [11:10:09 INFO]: Download job ‘Version & Libraries’ started (16 threads, 34 files)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Download job ‘Resources’ skipped as there are no files to download
    [11:10:09 INFO]: Job ‘Resources’ finished successfully (took 0:00:00.000)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:12 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:38 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’: Used own copy as it matched etag
    [11:10:38 INFO]: Job ‘Version & Libraries’ finished successfully (took 0:00:29.469)
    [11:10:38 INFO]: Launching game
    [11:10:38 INFO]: Unpacking natives to C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079
    [11:10:39 INFO]: Launching in C:UsersDrewsAppDataRoaming.minecraft
    [11:10:39 INFO]: Half command: C:Program Files (x86)Javajre1.8.0_45binjavaw.exe -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3G -Djava.library.path=C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079 -cp C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar;C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar net.minecraft.client.main.Main
    [11:10:39 INFO]: Looking for orphaned versions to clean up…
    [11:10:39 ERROR]: Game ended with bad state (exit code 1)
    [11:10:39 INFO]: Ignoring visibility rule and showing launcher due to a game crash
    [11:10:39 INFO]: Looking for old natives & assets to clean up…
    [11:10:39 INFO]: Deleting C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079
    [11:15:45 INFO]: Getting syncinfo for selected version
    [11:15:45 INFO]: Queueing library & version downloads
    [11:15:45 INFO]: Download job ‘Version & Libraries’ started (16 threads, 34 files)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Download job ‘Resources’ skipped as there are no files to download
    [11:15:46 INFO]: Job ‘Resources’ finished successfully (took 0:00:00.000)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:16:14 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’: Used own copy as it matched etag
    [11:16:14 INFO]: Job ‘Version & Libraries’ finished successfully (took 0:00:28.801)
    [11:16:14 INFO]: Launching game
    [11:16:14 INFO]: Unpacking natives to C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777
    [11:16:15 INFO]: Launching in C:UsersDrewsAppDataRoaming.minecraft
    [11:16:15 INFO]: Half command: C:Program Files (x86)Javajre1.8.0_45binjavaw.exe -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3G -Djava.library.path=C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777 -cp C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar;C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar net.minecraft.client.main.Main
    [11:16:15 INFO]: Looking for orphaned versions to clean up…
    [11:16:15 INFO]: Looking for old natives & assets to clean up…
    [11:16:17 ERROR]: Game ended with bad state (exit code 1)
    [11:16:17 INFO]: Ignoring visibility rule and showing launcher due to a game crash
    [11:16:17 INFO]: Deleting C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777

    Any ideas on what to do ?


  • #3

    Jun 9, 2015


    Kyrobi


    • View User Profile


    • View Posts


    • Send Message

    View Kyrobi's Profile

    • Tree Puncher
    • Join Date:

      6/7/2015
    • Posts:

      21
    • Member Details

    So how is he suppose to fix that? I had the same problem, but I just switched and played on a different computer.

    There are none you fool!


  • #4

    Jun 9, 2015


    Gafwmn2


    • View User Profile


    • View Posts


    • Send Message

    View Gafwmn2's Profile

    • Out of the Water
    • Join Date:

      2/4/2014
    • Posts:

      9
    • Minecraft:

      Gafwmn
    • Member Details

    and actually, I run 64 bit OS, unless you mean 32 for Java.

    I can provide system specs if that would help.

    And Gerbil wins the cookie…..yeah, needed to DL 64bit Java. All better now.

    Last edited by Gafwmn2: Jun 9, 2015

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


Sometimes we get could not reserve enough space for object heap error when we run a java application. This is a JVM error occurs for the reasons listed below. Before diving deep into the topic lets understand JVM heap space first.

Understanding JVM heap space:

Limited memory is allocated in JVM to run a java application. The memory is specified during the startup of applications.

Read Also:  Java.net.ConnectException: Connection Refused

 -Xms is a VM option to specify heap memory. Heap size can be fixed or variable depending on the strategy of garbage collection. Maximum heap size can be specified by -Xmx option.

The main cause of heap memory error occurs for the following three reasons:

Reason 1:

If we run a java application without specifying memory we can get this kind of error.
The error should be like this.

Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

Solution:

Most of the time this error occurs for 32 bit JVM. Because 32 bit JVM requires free space in memory to run the application but many times there is not enough memory to run java application.

We should replace 32 bit JVM with 64 bit JVM in a 64-bit computer to resolve this issue or we can specify memory to run the application by using below command

java -Xmx256M JavaApplication

Reason 2:

If we assign memory to 32 bit JVM greater than the heap size of the JVM, we can get this kind of error.

Suppose our JVM heap memory size is 2006M and we also assign the same size when we execute the program, we will get heap size error. For example, if we execute the following command, we will get
error in 32-bit JVM.

java -Xms2006M -Xmx2006M JavaApplication

Solution:

We should specify smaller memory as heap memory in 32 bit JVM as shown below or we should use 64 bit JVM

java -Xms1336M -Xmx1336M JavaApplication

Reason 3:

If we specify heap memory more than our physical memory, we will get this kind of error. Suppose we have 2GB ram but if we execute the following command we will get the error.

java -Xms8192M -Xmx8192M JavaApplication

Solution:

We can get rid of this error by specifying a smaller heap memory.

java -Xms1336M -Xmx1336M JavaApplication

Another way to resolve this issue, we should specify memory size in the _JAVA_OPTIONS variable in the path of the operation system. When we run the Java application it will take the memory size from the path. This path data should overcome the problems described above.

For Linux:

-bash-3.2$ export _JAVA_OPTIONS="-Xmx256M"
-bash-3.2$ javac JavaApplication.java

For Windows:

Follow the below path:
Start -> Control Panel -> System -> Advance(tab) -> Environment Vairables -> System Variables ->
Create  New Variable Name: _JAVA_OPTIONS -> Variable Value: -Xmx256M

Nowadays, 64 bit systems are available. We should avoid 32-bit hardware architecture and 32-bit java versions.

That’s all for today, please mention in comments in case you have any questions related to could not reserve enough space for object heap error.

Recommended Posts

Tree Puncher

    • Share

Howdy, I wanted to begin programming mods for Minecraft v. 1.12.2, so I downloaded the forge MDK and unzipped it in a new directory (of course)
I started following the README file with the instructions. Opened the cmd, pointed to the directory and launched the «gradlew setupDecompWorkspace» command, but I got the following message

:decompileMc
Error occurred during initialization of VM
Could not reserve enough space for 3145728KB object heap
:decompileMc FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':decompileMc'.
> Process 'command 'C:Program Files (x86)Javajdk1.8.0_192binjava.exe'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 31.881 secs

while it was trying the :decompileMc command
 

Then I tried writing on the gradle.properties «org.gradle.jvmargs= -Xmx3G» so it could use more memory to build the task, but then…

To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/2.14/userguide/gradle_daemon.html.

FAILURE: Build failed with an exception.

* What went wrong:
Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/2.14/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for 3145728KB object heap

I tried some other properties like «org.gradle.daemon=true» and «org.gradle.daemon.performance.enable-monitoring=false«, when I tried to add memory it shows the second message while when I tried to reduce the memory it shows the first one… I don’t know if there are some java configurations I have to do or what, so can anyone help me with this?

Link to comment
Share on other sites

DaemonUmbra

Reality Controller

    • Share

Could you open a command prompt and show me the output of java -version as well as javac -version?

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

What to provide:

…for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update…

…for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraftlogs.

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge’s log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse’s installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler

  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile’s GameDir property to the pack’s instance folder (not the instances folder, the folder that has the pack’s name on it).
  4. Now launch the pack through that profile and follow the «Mojang Launcher» instructions above.

Video:

or alternately, 

Fallback («No logs are generated»):

If you don’t see logs generated in the usual place, provide the launcher_log.txt from .minecraft

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus’ support team.

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:

    1. git init
    2. git remote add origin [Your Repository’s URL]

      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout —track origin/master
    5. git stage *
    6. git commit -m «[Your commit message]»
    7. git push
  4. Navigate to GitHub and you should now see most of the files.

    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

Link to comment
Share on other sites

Tree Puncher

  • Author
    • Share

12 minutes ago, DaemonUmbra said:

Could you open a command prompt and show me the output of java -version as well as javac -version?

Sure

c:Program Files (x86)Javajdk1.8.0_192bin>java -version
java version "1.8.0_192"
Java(TM) SE Runtime Environment (build 1.8.0_192-b12)
Java HotSpot(TM) Client VM (build 25.192-b12, mixed mode)

c:Program Files (x86)Javajdk1.8.0_192bin>javac -version
javac 1.8.0_192

c:Program Files (x86)Javajdk1.8.0_192bin>

I also tried to use the commands outside the directory and only java -version worked (even though I setted the path, idk if it’s normal or not)

Link to comment
Share on other sites

DaemonUmbra

Reality Controller

    • Share

What does it say when you run gradlew setupDecompWorkspace —stacktrace?

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

What to provide:

…for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update…

…for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraftlogs.

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge’s log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse’s installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler

  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile’s GameDir property to the pack’s instance folder (not the instances folder, the folder that has the pack’s name on it).
  4. Now launch the pack through that profile and follow the «Mojang Launcher» instructions above.

Video:

or alternately, 

Fallback («No logs are generated»):

If you don’t see logs generated in the usual place, provide the launcher_log.txt from .minecraft

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus’ support team.

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:

    1. git init
    2. git remote add origin [Your Repository’s URL]

      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout —track origin/master
    5. git stage *
    6. git commit -m «[Your commit message]»
    7. git push
  4. Navigate to GitHub and you should now see most of the files.

    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

Link to comment
Share on other sites

Tree Puncher

  • Author
    • Share

24 minutes ago, DaemonUmbra said:

What does it say when you run gradlew setupDecompWorkspace —stacktrace?

Here it is

C:UsersKitzuDocumentsMC_ModsTest>gradlew setupDecompWorkspace --stacktrace
Starting a new Gradle Daemon for this build (subsequent builds will be faster).

FAILURE: Build failed with an exception.

* What went wrong:
Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/2.14/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for 3145728KB object heap


* Try:
Run with --info or --debug option to get more log output.

* Exception is:
org.gradle.api.GradleException: Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/2.14/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for 3145728KB object heap

        at org.gradle.launcher.daemon.bootstrap.DaemonGreeter.parseDaemonOutput(DaemonGreeter.java:34)
        at org.gradle.launcher.daemon.client.DefaultDaemonStarter.startProcess(DefaultDaemonStarter.java:153)
        at org.gradle.launcher.daemon.client.DefaultDaemonStarter.startDaemon(DefaultDaemonStarter.java:136)
        at org.gradle.launcher.daemon.client.DefaultDaemonConnector.startDaemon(DefaultDaemonConnector.java:111)
        at org.gradle.launcher.daemon.client.DefaultDaemonConnector.connect(DefaultDaemonConnector.java:89)
        at org.gradle.launcher.daemon.client.DaemonClient.execute(DaemonClient.java:122)
        at org.gradle.launcher.daemon.client.DaemonClient.execute(DaemonClient.java:80)
        at org.gradle.launcher.cli.RunBuildAction.run(RunBuildAction.java:43)
        at org.gradle.internal.Actions$RunnableActionAdapter.execute(Actions.java:173)
        at org.gradle.launcher.cli.CommandLineActionFactory$ParseAndBuildAction.execute(CommandLineActionFactory.java:239)
        at org.gradle.launcher.cli.CommandLineActionFactory$ParseAndBuildAction.execute(CommandLineActionFactory.java:212)
        at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:35)
        at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:24)
        at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:33)
        at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:22)
        at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:205)
        at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:169)
        at org.gradle.launcher.Main.doAction(Main.java:33)
        at org.gradle.launcher.bootstrap.EntryPoint.run(EntryPoint.java:45)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.gradle.launcher.bootstrap.ProcessBootstrap.runNoExit(ProcessBootstrap.java:55)
        at org.gradle.launcher.bootstrap.ProcessBootstrap.run(ProcessBootstrap.java:36)
        at org.gradle.launcher.GradleMain.main(GradleMain.java:23)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.gradle.wrapper.BootstrapMainStarter.start(BootstrapMainStarter.java:30)
        at org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:127)
        at org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:61)


C:UsersKitzuDocumentsMC_ModsTest>

and gradle.properties had jvmargs= -Xmx3G


Edited November 16, 2018 by Kitsu

Link to comment
Share on other sites

DaemonUmbra

Reality Controller

    • Share

How much ram is physically in your machine?

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

What to provide:

…for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update…

…for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraftlogs.

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge’s log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse’s installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler

  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile’s GameDir property to the pack’s instance folder (not the instances folder, the folder that has the pack’s name on it).
  4. Now launch the pack through that profile and follow the «Mojang Launcher» instructions above.

Video:

or alternately, 

Fallback («No logs are generated»):

If you don’t see logs generated in the usual place, provide the launcher_log.txt from .minecraft

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus’ support team.

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:

    1. git init
    2. git remote add origin [Your Repository’s URL]

      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout —track origin/master
    5. git stage *
    6. git commit -m «[Your commit message]»
    7. git push
  4. Navigate to GitHub and you should now see most of the files.

    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

Link to comment
Share on other sites

Tree Puncher

  • Author
    • Share

7 hours ago, DaemonUmbra said:

How much ram is physically in your machine?

I have 8 Gb of ram, desktop pc I built some years ago

Link to comment
Share on other sites

Creeper Killer

    • Share

It looks like you’re using a 32-bit version of Java here: c:Program Files (x86)Javajdk1.8.0_192
 

Use the 64-bit version instead — as your PC has >4GB ram, this should be supported.

Link to comment
Share on other sites

Tree Puncher

  • Author
    • Share

9 minutes ago, quadraxis said:

It looks like you’re using a 32-bit version of Java here: c:Program Files (x86)Javajdk1.8.0_192
 

Use the 64-bit version instead — as your PC has >4GB ram, this should be supported.

wops I thought I already had installed the x64 version, my bad, now it seems to work just fine thanks a lot ^^

Link to comment
Share on other sites

  • 8 months later…

Dominus_Nova

Tree Puncher

    • Share

im using a 64 bit but im having the same problems plz help

Link to comment
Share on other sites

DaemonUmbra

Reality Controller

    • Share

Please don’t Necro old threads, if you have an issue make your own.

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

What to provide:

…for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update…

…for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraftlogs.

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge’s log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse’s installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler

  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile’s GameDir property to the pack’s instance folder (not the instances folder, the folder that has the pack’s name on it).
  4. Now launch the pack through that profile and follow the «Mojang Launcher» instructions above.

Video:

or alternately, 

Fallback («No logs are generated»):

If you don’t see logs generated in the usual place, provide the launcher_log.txt from .minecraft

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus’ support team.

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:

    1. git init
    2. git remote add origin [Your Repository’s URL]

      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout —track origin/master
    5. git stage *
    6. git commit -m «[Your commit message]»
    7. git push
  4. Navigate to GitHub and you should now see most of the files.

    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

Link to comment
Share on other sites

  • 3 yr

    DaemonUmbra locked this topic


Guest

This topic is now closed to further replies.

Problem

Could not reserve enough space for object heap

Symptom

This is noticed when you try to start a JVM.
This could occur due to two possible reasons

1. java -Xmx parameter is incorrectly.

The parameter -Xmx denotes the maximum value
that the heap can grow. A range of addresses equal in size to
the -Xmx value is reserved at startup so the JVM can grow to the maximum heap
size.
The value set in this parameter is limited by the OS used.
For windows, the maximum heap that can be used per process is 1.2 GB to 1.5 GB.

2. The amount of memory
available to java

It could be
possible that several other applications are consuming memory due to which this
JVM is not able to reserve the specified amount of memory.

Error Message

Error occurred during initialization of
VM
Could not reserve enough space for object
heap

Resolving The Problem

Solution

1. If the issue occurs due to incorrect -Xmx
value, make sure that the limitation mentioned above is considered and then the
value is set.

2. If this
application is not able to reserve sufficient memory, make sure that there are
no other processes which is consuming a huge chunk of memory. If there are,
probably bringing them down would help resolve the issue.

[{«Product»:{«code»:»SS6QYM»,»label»:»Sterling Selling and Fulfillment Suite»},»Business Unit»:{«code»:»BU055″,»label»:»Cognitive Applications»},»Component»:»Not Applicable»,»Platform»:[{«code»:»PF025″,»label»:»Platform Independent»}],»Version»:»All»,»Edition»:»»,»Line of Business»:{«code»:»LOB59″,»label»:»Sustainability Software»}}]

Historical Number

TRB2873

By

haven_day · Posted 2 hours ago

i do not know why but im getting a crash report number -1, this is the crash report 

—- Minecraft Crash Report —-

WARNING: coremods are present:
  MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
  MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)
  HCASM (HammerLib-1.12.2-2.0.6.32.jar)
  IvToolkit (IvToolkit-1.3.3-1.12.jar)
  ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)
  IELoadingPlugin (ImmersiveEngineering-core-0.12-92.jar)
Contact their authors BEFORE contacting forge

// Hey, that tickles! Hehehe!

Time: 6/21/23 6:04 PM
Description: There was a severe problem during mod loading that has caused the game to fail

net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Expansive Weaponry (exw)
Caused by: java.lang.NullPointerException
    at org.rainyville.modulus.ExpansiveWeaponry.onPreInitialization(ExpansiveWeaponry.java:143)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637)
    at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
    at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
    at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
    at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
    at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
    at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
    at com.google.common.eventbus.EventBus.post(EventBus.java:217)
    at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219)
    at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
    at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
    at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
    at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
    at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
    at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
    at com.google.common.eventbus.EventBus.post(EventBus.java:217)
    at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136)
    at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:629)
    at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)
    at net.minecraft.client.main.Main.main(SourceFile:123)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

A detailed walkthrough of the error, its code path and all known details is as follows:
—————————————————————————————

— System Details —
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_51, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 434052680 bytes (413 MB) / 805306368 bytes (768 MB) up to 2147483648 bytes (2048 MB)
    JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx2G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP 9.42 Powered by Forge 14.23.5.2860 64 mods loaded, 64 mods active
    States: ‘U’ = Unloaded ‘L’ = Loaded ‘C’ = Constructed ‘H’ = Pre-initialized ‘I’ = Initialized ‘J’ = Post-initialized ‘A’ = Available ‘D’ = Disabled ‘E’ = Errored

    | State | ID                                   | Version                 | Source                                          | Signature                                |
    |:—— |:———————————— |:———————— |:———————————————— |:—————————————- |
    | LCH   | minecraft                            | 1.12.2                  | minecraft.jar                                   | None                                     |
    | LCH   | mcp                                  | 9.42                    | minecraft.jar                                   | None                                     |
    | LCH   | FML                                  | 8.0.99.99               | forge-1.12.2-14.23.5.2860.jar                   | e3c3d50c7c986df74c645c0ac54639741c90a557 |
    | LCH   | forge                                | 14.23.5.2860            | forge-1.12.2-14.23.5.2860.jar                   | e3c3d50c7c986df74c645c0ac54639741c90a557 |
    | LCH   | ivtoolkit                            | 1.3.3-1.12              | minecraft.jar                                   | None                                     |
    | LCH   | micdoodlecore                        |                         | minecraft.jar                                   | None                                     |
    | LCH   | obfuscate                            | 0.4.2                   | minecraft.jar                                   | None                                     |
    | LCH   | actuallyadditions                    | 1.12.2-r151             | ActuallyAdditions-1.12.2-r151-2.jar             | None                                     |
    | LCH   | codechickenlib                       | 3.2.1.349               | CodeChickenLib-1.12.2-3.2.1.349-universal.jar   | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
    | LCH   | ancientwarfare                       | 1.12.2-2.7.0.772        | ancientwarfare-1.12.2-2.7.0.772.jar             | None                                     |
    | LCH   | ancientwarfarestructure              | 1.12.2-2.7.0.772        | ancientwarfare-1.12.2-2.7.0.772.jar             | None                                     |
    | LCH   | ancientwarfarevehicle                | 1.12.2-2.7.0.772        | ancientwarfare-1.12.2-2.7.0.772.jar             | None                                     |
    | LCH   | ancientwarfarenpc                    | 1.12.2-2.7.0.772        | ancientwarfare-1.12.2-2.7.0.772.jar             | None                                     |
    | LCH   | ancientwarfareautomation             | 1.12.2-2.7.0.772        | ancientwarfare-1.12.2-2.7.0.772.jar             | None                                     |
    | LCH   | autoreglib                           | 1.3-32                  | AutoRegLib-1.3-32.jar                           | None                                     |
    | LCH   | camera                               | 1.0.9                   | camera-1.0.9.jar                                | None                                     |
    | LCH   | collective                           | 2.25                    | collective-1.12.2-2.25.jar                      | None                                     |
    | LCH   | cosmeticarmorreworked                | 1.12.2-v4               | CosmeticArmorReworked-1.12.2-v4.jar             | aaaf83332a11df02406e9f266b1b65c1306f0f76 |
    | LCH   | cosmeticarmorreworked|tombmanygraves | 1.12.2-v4               | CosmeticArmorReworked-1.12.2-v4.jar             | aaaf83332a11df02406e9f266b1b65c1306f0f76 |
    | LCH   | craftstudioapi                       | 1.0.0                   | CraftStudio-1.0.0.93-mc1.12-alpha.jar           | None                                     |
    | LCH   | dynamictrees                         | 1.12.2-0.9.23           | DynamicTrees-1.12.2-0.9.23.jar                  | None                                     |
    | LCE   | exw                                  | 1.1.4                   | Expansive+Weaponry-1.1.4.jar                    | 1c16a04cf2de02e4ee45d4c16af7e51af2d45c4d |
    | LC    | umm3185118519                        | release 1.5 — MC 1.12.2 | Extended+ItemsOres+[1.12.2]+(release+1.5).jar   | None                                     |
    | LC    | fastfurnace                          | 1.3.1                   | FastFurnace-1.12.2-1.3.1.jar                    | None                                     |
    | LC    | cfm                                  | 6.3.0                   | furniture-6.3.2-1.12.2.jar                      | None                                     |
    | LC    | mantle                               | 1.12-1.3.3.55           | Mantle-1.12-1.3.3.55.jar                        | None                                     |
    | LC    | galacticraftcore                     | 4.0.2.280               | Galacticraft-Mod-1.12.2.jar                     | None                                     |
    | LC    | grapplemod                           | 1.12.2-v11.1            | grapplemod-v11.1-1.12.2.jar                     | None                                     |
    | LC    | gravestone                           | 1.10.3                  | gravestone-1.10.3.jar                           | None                                     |
    | LC    | hammercore                           | 2.0.6.32                | HammerLib-1.12.2-2.0.6.32.jar                   | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |
    | LC    | waila                                | 1.8.26                  | Hwyla-1.8.26-B41_1.12.2.jar                     | None                                     |
    | LC    | mts                                  | 22.10.0                 | Immersive+Vehicles-1.12.2-22.10.0 (1).jar       | None                                     |
    | LC    | trackapi                             | 1.2                     | TrackAPI-1.2.jar                                | None                                     |
    | LC    | universalmodcore                     | 1.1.4                   | UniversalModCore-1.12.2-forge-1.1.4-2b81e7.jar  | None                                     |
    | LC    | immersiverailroading                 | 1.9.1                   | ImmersiveRailroading-1.12.2-forge-1.9.1.jar     | None                                     |
    | LC    | improvableskills                     | 12.4.68                 | ImprovableSkills-1.12.2-12.4.68.jar             | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |
    | LC    | ironbackpacks                        | 1.12.2-3.0.8-12         | IronBackpacks-1.12.2-3.0.8-12.jar               | None                                     |
    | LC    | ironchest                            | 1.12.2-7.0.67.844       | ironchest-1.12.2-7.0.72.847.jar                 | None                                     |
    | LC    | jei                                  | 4.16.1.301              | jei_1.12.2-4.16.1.301.jar                       | None                                     |
    | LC    | journeymap                           | 1.12.2-5.7.1            | journeymap-1.12.2-5.7.1.jar                     | None                                     |
    | LC    | mcgltf                               | 1.12.2-Forge-2.0.3.0    | MCglTF-1.12.2-Forge-2.0.3.0.jar                 | None                                     |
    | LC    | mcwbridges                           | 1.0.6                   | mcw-bridges-1.0.6b-mc1.12.2.jar                 | None                                     |
    | LC    | mekanism                             | 1.12.2-9.8.3.390        | Mekanism-1.12.2-9.8.3.390.jar                   | None                                     |
    | LC    | mousetweaks                          | 2.10                    | MouseTweaks-2.10-mc1.12.2.jar                   | None                                     |
    | LC    | netherendingores                     | 1.12.2-1.3              | Netherending-Ores-1.12.2-1.3.jar                | None                                     |
    | LC    | omlib                                | 3.1.4-249               | omlib-1.12.2-3.1.4-249.jar                      | None                                     |
    | LC    | rabbit-gui                           | 1.12.2.2                | rabbit-gui-1.12.2.2.jar                         | None                                     |
    | LC    | corerm                               | 1.3.3                   | RikMuldsCore_1.3.3.jar                          | None                                     |
    | LC    | sanlib                               | 1.5.1                   | SanLib-1.12.2-1.5.1.jar                         | df48348748b5e141b1d118e2302a8d5be930b708 |
    | LC    | sanplayermodel                       | 1.1.1                   | SanLib-1.12.2-1.5.1.jar                         | None                                     |
    | LC    | sdrones                              | 1.3.1                   | sdrones-1.3.1.jar                               | None                                     |
    | LC    | simpleplanes                         | 3.0.1.7                 | simpleplanes-1.12.2-3.0.1.7.jar                 | None                                     |
    | LC    | sit                                  | v1.3                    | sit-1.12.2-v1.3.jar                             | None                                     |
    | LC    | snowaccumulation                     | 1.0.0                   | SnowAccumulation-1.12-1.0.0.jar                 | None                                     |
    | LC    | sparkshammers                        | @VERSION@               | sparkshammers-1.12.2-1.9.2.jar                  | None                                     |
    | LC    | toughasnails                         | 3.1.0.141               | ToughAsNails-1.12.2-3.1.0.141-universal.jar     | None                                     |
    | LC    | unuparts                             | 5.1.4                   | UNU+Parts+Pack+[MTS]+1.12.2-22.5.0-BETA3.jar    | None                                     |
    | LC    | unucivil                             | 5.3.2                   | UNU+Civilian+Pack+[MTS]+1.12.2-22.5.0-BETA3.jar | None                                     |
    | LC    | unumilitary                          | 5.0.0                   | UNU+Military+Pack+[MTS]+1.12.2-21.3.0-5.0.0.jar | None                                     |
    | LC    | vehicle                              | 0.44.1                  | vehicle-mod-0.44.1-1.12.2.jar                   | None                                     |
    | LC    | walljump                             | 1.3.2                   | walljump-1.12.2-1.3.2.jar                       | None                                     |
    | LC    | wooltostring                         | 1.12.2                  | WoolToString-1.12.2-1.0.0.jar                   | None                                     |
    | LC    | immersiveengineering                 | 0.12-92                 | ImmersiveEngineering-0.12-92.jar                | 4cb49fcde3b43048c9889e0a3d083225da926334 |
    | LC    | orelib                               | 3.6.0.1                 | OreLib-1.12.2-3.6.0.1.jar                       | 7a2128d395ad96ceb9d9030fbd41d035b435753a |

    Loaded coremods (and transformers): 
MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
  micdoodle8.mods.miccore.MicdoodleTransformer
MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)
  mekanism.coremod.KeybindingMigrationHelper
HCASM (HammerLib-1.12.2-2.0.6.32.jar)
  com.zeitheron.hammercore.asm.HammerCoreTransformer
IvToolkit (IvToolkit-1.3.3-1.12.jar)
  
ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)
  com.mrcrayfish.obfuscate.asm.ObfuscateTransformer
IELoadingPlugin (ImmersiveEngineering-core-0.12-92.jar)
  blusunrize.immersiveengineering.common.asm.IEClassTransformer
    Expansive Weaponry v1.1.4 (1.1.4): 
    States: ‘U’ = Unloaded ‘L’ = Loaded ‘A’ = Available ‘D’ = Disabled ‘E’ = Errored

    | State | ID | Version | Target API | Source | Type |
    |:—— |:— |:——- |:———- |:—— |:—- |

    HammerCore Debug Information: 
        Dependent Mods:
            -Improvable Skills (improvableskills) @ 12.4.68
 

if anyone can help with this thank you so much!!!

  • Could not load sap gui resources ошибка
  • Could not initialize the graphics subsystem darksiders 2 ошибка
  • Could not initialize steam как исправить ошибку
  • Could not initialize egl ошибка
  • Could not find stored procedure ошибка