Jump to content

Recommended Posts

Posted

(in intellij IDEA)i've tested out the "gradlew build" in non build areas and it worked fine. but when i did it in the project it told me "Error occurred during initialization of VM Could not reserve enough space for 3145728KB object heap". what gives?

Posted

This means you have a 32-Bit JDK, you should uninstall it and get a 64-Bit JDK

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.

  Reveal hidden contents

 

Posted (edited)
  Quote

I recommend specifying "org.gradle.java.home = C: / Program Files / Java / jdk1.8.0_241" in gradle.properties

Expand  

specify the path to 64 bit jdk (NOT Program Files (x86)/Java , it's 32 bit)

Edited by Torq
  • Like 1

If I helped you, don't forget like. I'm using a translator, sorry.

Posted

this is what my gradle.properties file says

 

# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

 

Posted
  On 3/26/2020 at 2:18 AM, idontspam said:

this is what my gradle.properties file says

 

# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

 

Expand  

My

  Quote

# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
#org.gradle.java.home=/usr/java/jdk1.8.0_241
org.gradle.java.home=C:/Program Files/Java/jdk1.8.0_241

Expand  

org.gradle.jvmargs=-Xmx3G - Java can use a maximum of 3 GB of RAM.

org.gradle.jvmargs=-Xms3G - Java can use a minimum of 3 GB of RAM.

org.gradle.jvmargs=-Xms512m -Xmx4G  - Java can use a minimum of 512MB and maximum of 4GB of RAM.

org.gradle.java.home=C:/Program Files/Java/jdk1.8.0_241 - Gradle uses that version of Java which is in this folder.

org.gradle.java.home=C:/Program Files (x86)/Java/jdk1.8.0_241 - This installs the 32 bit version of Java (in Program Files (x86)).

#org.gradle.java.home=/usr/java/jdk1.8.0_241 - I use this line when Linux is running.

You need to download jdk 8 64 bit from here and install it. Then here (C:/Program Files/Java/) you will have this folder jdk1.8.0_241. Now we just need to add this line to the properties file.

  Quote

org.gradle.java.home=C:/Program Files/Java/jdk1.8.0_241

Expand  

If there are problems, try to allocate more RAM.

If I helped you, don't forget like. I'm using a translator, sorry.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.