This is the mail archive of the insight@sourceware.org mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: GDB-insight build errors



> -----Original Message-----
> From: insight-owner@sourceware.org
> [mailto:insight-owner@sourceware.org] On Behalf Of ariga masahiro
> Sent: Wednesday, July 25, 2007 6:26 PM
> To: insight@sourceware.org
> Subject: GDB-insight build errors
>
> Hi everyone,
>
> Please help me next problem.
>
> I tried to install GDB-insight
> but encountered next build errors.
>
> I downloaded insight-6.6.tar.bz2
> and configureed for sh-elf
> and did make using next commands.
>
> $ cd username
> $ tar jxvf insight-6.1.tar.bz2
> $ mkdir build-insight
> $ cd build-insight
> $ /home/username/insight-6.1/configure --target=sh-elf
> $ make all install
>
> And next errors occured.
> Since top portion was dropped out of console window,
> possibly there were others.

When building, log the output to a file like so:
$ make all install 2>&1 | tee insight-make.log

This will redirect stderr to stdout, then pipe stdout to 'tee' which will
simultaneously display the output on the console *and* write to the given
filename (insight-make.log). That way you can inspect the log file later to
see exactly where the first error occurred.

Eric Weddington



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]