Posted May 3, 20178 yr Hey, I am having some problems with the decompiling. When I run my decompile bat file it always gets stuck at 56%. I've been waiting for some hours now i believe, and tried many times, but I can't get it working. This is what it looks like: This mapping 'snapshot_20151122' was designed for MC 1.8! Use at your own peril. ################################################# ForgeGradle 2.1-SNAPSHOT-da90449 https://github.com/MinecraftForge/ForgeGradle ################################################# Powered by MCP unknown http://modcoderpack.com by: Searge, ProfMobius, Fesh0r, R4wk, ZeuX, IngisKahn, bspkrs ################################################# :deobfCompileDummyTask :deobfProvidedDummyTask :getVersionJson :extractUserdev :extractDependencyATs SKIPPED :extractMcpData SKIPPED :extractMcpMappings SKIPPED :genSrgs SKIPPED :downloadClient SKIPPED :downloadServer SKIPPED :splitServerJar SKIPPED :mergeJars SKIPPED :deobfMcSRG SKIPPED > Building 56% > :decompileMc > Resolving dependencies ':forgeGradleMcDeps' I've tried two different bat files: gradlew setupDecompWorkspace gradlew setupDecompWorkspace -Xmx8g Xms8g Edited May 3, 20178 yr by CoffeeBunny
May 3, 20178 yr It's probably starving for memory and swapping. To run that long, it might even be thrashing. See if you can allocate more RAM to the JVM (but if you don't actually have the RAM, then it might blow its stack instead). Google to find other threads with similar issues. The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.
May 3, 20178 yr Happens a lot to me, Just use: gradlew -Dorg.gradle.jvmargs=-Xmx3000m setupDecompWorkspace eclipse Fixes my issue perfectly, I'm not sure if it's the right way of doing things but it certainly works for me
May 4, 20178 yr Author I tried this: gradlew -Dorg.gradle.jvmargs=-Xmx3000m setupDecompWorkspace eclipse And waited a hour. And I got it working. Thanks to you both.
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.