問題描述
這是我第一次使用 Proguard,我注意到如果您在 proguard-project.txt
中添加許多自定義規則,顯然會花費更多時間來構建.這導致 Eclipse 崩潰報告 GC 開銷限制超出
然后我不得不強制關閉 java,因為編輯器繼續彈出錯誤和警報對話框.有什么辦法可以避免 Eclipse 上的這些連續崩潰,從而解決報告的問題 這里也是?
It's the first time I am using Proguard, I've noticed that if you add many custom rules to proguard-project.txt
it takes obviously much more time for building. That's cause Eclipse to crash reporting a GC overhead limit exceeded
and then I have to force the shut down of java because the editor continues to pop out error and alert dialogs. Is there any way to avoid these continuous crashes on Eclipse and so fix the problem reported here too?
推薦答案
已修復,我閱讀了所有其他論壇關于該問題的帖子,但沒有人說如何在 Eclipse 上修復它.我找到了修復here
Fixed, I read all the others forum posts about the problem but no one said how to fix it on Eclipse. I found the fix here
如果鏈接失效,您可以執行以下操作.編輯eclipse.ini",并設置類似的內容:
in case the link becomes dead, here's what you can do. Edit "eclipse.ini", and set something like that:
-XX:MaxPermSize=1024m
-Xms512m
-Xmx1024m
這篇關于Eclipse 崩潰并出現 GC 開銷限制超出錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!