>>105

自己解決。

rebaseall 問題だったらしい。
rebaseall って、特定のディレクトリしかやってくれないから、自分で追加のリストを作らないといけないんだな。

[Bash]$ find ~ -iname '*.so' -o -iname '*.dll' > ~/my_rebase.lst
[Bash]$ find /usr/lib -iname '*.so' -o -iname '*.dll' >> ~/my_rebase.lst
[Bash]$ find /usr/local -iname '*.so' -o -iname '*.dll' >> ~/my_rebase.lst
[Bash]$ mintty -e ash
cygwin関連のプログラムをすべて落としてから、ash上で
[ash]$ rebaseall -T my_rebase.lst -pv
[ash]$ rebaseall -pv

で直ったっぽい。