On 6/1/07, Denis PILAT <denis.pilat@st.com> wrote:
Jie Zhang wrote:
> I downloaded insight 6.6 and do
>
> ./configure
> make
>
> then when I tried to run insight from the build directory, it failed;
>
> build-insight66/gdb$ ./insight
> Error: can't find package Iwidgets
>
You must install it (make install prefix=<path_to_install_dir>)
Then run the installed insight under path_to_install_dir/bin
The installed insight runs OK, but why we have to install it to get it
run? People usually do
configure
make
make check
make install
But this sequence does not work for insight 6.6 release. We have to
configure
make
make install
make clean
make check
People worked really hard to allow insight to be run from the build
directory years ago:
http://sourceware.org/ml/insight/2000-q4/msg00070.html
As Jim said, "This really should work."
Jie