I happily upgraded my Eclipse SDK to 3.2.2 as soon as it's released, but it started to crash whenever a tooltip is displayed, printing out the following error message.
이클립스 3.2.2가 릴리즈되자 마자 기쁜 마음으로 업그레이드를 했는데, 툴팁이 표시될때마다 다음과 같은 에러 메시지를 출력하면서 죽어버리기 시작했습니다.
After a couple hours of Googling, I found specifying the Mozilla home fixes this problem./home/trustin/.local/jdk/bin/java: symbol
lookup error: /home/trustin/.local/eclipse/
configuration/org.eclipse.osgi/bundles/5/1/
.cp/libswt-mozilla-gcc3-gtk-3236.so:
undefined symbol: NS_InitEmbedding
한두 시간 구글링해본 결과 모질라 홈 디렉토리를 지정해 주면 문제가 해결된다는 것을 알게 되었습니다.
#/bin/sh
# This is my Eclipse launching script.
# 제 이클립스 실행 스크립트입니다.
# Set the Mozilla home
export MOZILLA_FIVE_HOME=/usr/lib/mozilla
# and viola!
cd ~/.local/eclipse && ./eclipse \
-vmargs -Xms256m -Xmx768m \
-XX:MaxPermSize=256m
그리고 본문에 나오는 -Xmx768m 메모리 할당은 베스트 프랙티스인가요?
— 영회 · 2007-03-27 16:42 · # · Reply