[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: Tools to examine build logs?
- From: "Rudolf Kastl" <che666 gmail com>
- To: "Development discussions related to Fedora" <fedora-devel-list redhat com>
- Subject: Re: Tools to examine build logs?
- Date: Fri, 25 Jan 2008 12:14:01 +0100
rpmbuild -ba blahblub 2> error.log
just splitting stderr off the regular output.
kind regards,
Rudolf Kastl
On Jan 25, 2008 11:51 AM, Michael Schwendt
<mschwendt tmp0701 nospam arcor de> wrote:
> What do you use to search build logs for the various warnings printed by
> "configure", the compiler and other tools?
>
> For a long time I've used the following simple shell function for building
> from source rpms and automatically collecting the output in log files:
>
> function rpmb {
> name=$(rpm -qp --qf %{name} $1)
> ver=$(rpm -q --whatprovides redhat-release --qf %{version})
> logname=build.$name.$ver.log
> echo "Build for:" $(cat /etc/redhat-release) | tee -a $logname
> rpmbuild --rebuild $1 2>&1 | tee -a $logname
> #rpmblstrip.pl $logname > $logname.stripped
> }
>
> The last line tried to grep various warnings plus a few things like
> "yes/no" feature status output from configure scripts, saving the time
> needed to skim over build logs. I messed it up when adding to it commands
> to watch for PIC builds and no-%optflags builds. That's why it is disabled.
>
> So, what do you use to examine build logs from mock or plain rpmbuild?
> Do you always display the complete logs?
>
> --
> fedora-devel-list mailing list
> fedora-devel-list redhat com
> https://www.redhat.com/mailman/listinfo/fedora-devel-list
>
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]