Debian LinuxでのGoogleAppEngine起動について

DebianLinux上で、Eclipse3.5からGoogleAppEngine用のWebプロジェクトを作成し、デバッグ起動しようとしたところ、以下のエラーが発生。

** Unable to load Mozilla for hosted mode **
java.lang.UnsatisfiedLinkError:
/xxxxxxxxxxxxxxxxxx/eclipse/plugins/com.google.gwt.eclipse.sdkbundle.linux_1.7.1.v200909221731/gwt-linux-1.7.1/mozilla-1.7.12/libxpcom.so:
libstdc++.so.5: cannot open shared object file: No such file or directory

調べたところ、「libstdc++5」というライブラリが足りないらしい。

http://blog.dalejefferson.com/2009/09/gwt-on-64bit-ubuntu-karmic-910.html

早速、apt-get install libstdc++5でインストールし、再度実行したところ、正常に起動しました。