Re: [ANNOUNCEMENT] GDB BuildBot
Eli Zaretskii <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
> From: Sergio Durigan Junior <[email protected]> > Cc: [email protected] > Date: Thu, 22 Jan 2015 16:46:48 -0500 > > On Thursday, January 22 2015, Eli Zaretskii wrote: > > >> On second thought, TAGS files _should_ be in the source tree, because > >> that's where they will be used. > >> > >> So how about running "make TAGS" in the source tree? Can this be > >> done in the BuildBot? > > On a second thought (from my side), I would have to run configure from > the srcdir before "make TAGS"... While I can do that, I'm trying to > avoid having too many unecessary steps in the build. > > If the "make TAGS" step proves to be too difficult to implement in the > regular build process, I will create a special builder just for it. I don't think we need to go that far. Simply adding "cd $(srcdir) &&" to the TAGS rules that don't already do that should be good enough. Alternatively, you could do just "make -C gdb TAGS". After all, we don't necessarily need to fix the entire repository, only the parts that are under our responsibility. Perhaps this is the best alternative, on balance. WDYT?