Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* cgen/bitset.h missing??
@ 2010-03-25 19:10 Joel Sherrill
  2010-03-25 20:08 ` Tom Tromey
  0 siblings, 1 reply; 5+ messages in thread
From: Joel Sherrill @ 2010-03-25 19:10 UTC (permalink / raw)
  To: gdb

Hi,

It looks like Doug Evans moved it a few
months ago from opcodes/cgen-bitset.h to
cgen/bitset.h according to the ChaneLog
but I don't see it on the CVS head.

2009-10-23  Doug Evans <dje@sebabeach.org>

         * cgen-bitset.h: Delete, moved to ../cgen/bitset.h.
         * cgen.h: Update.  Improve multi-inclusion macro name.


$ find ../../gdb-7.0/ -name "*bitset*"
../../gdb-7.0/include/opcode/cgen-bitset.h
../../gdb-7.0/opcodes/cgen-bitset.c

Any ideas?  I assume it could be a user error but..

-- 
Joel Sherrill, Ph.D.             Director of Research&  Development
joel.sherrill@OARcorp.com        On-Line Applications Research
Ask me about RTEMS: a free RTOS  Huntsville AL 35805
    Support Available             (256) 722-9985



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: cgen/bitset.h missing??
  2010-03-25 19:10 cgen/bitset.h missing?? Joel Sherrill
@ 2010-03-25 20:08 ` Tom Tromey
  2010-03-25 20:19   ` Joel Sherrill
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Tromey @ 2010-03-25 20:08 UTC (permalink / raw)
  To: Joel Sherrill; +Cc: gdb

>>>>> "Joel" == Joel Sherrill <joel.sherrill@oarcorp.com> writes:

Joel> It looks like Doug Evans moved it a few
Joel> months ago from opcodes/cgen-bitset.h to
Joel> cgen/bitset.h according to the ChaneLog
Joel> but I don't see it on the CVS head.

Make sure you "cvs update -d".

Joel> $ find ../../gdb-7.0/ -name "*bitset*"
Joel> ../../gdb-7.0/include/opcode/cgen-bitset.h
Joel> ../../gdb-7.0/opcodes/cgen-bitset.c

My CVS head checkout:

opsy. find . -name '*bitset*'
./opcodes/cgen-bitset.c
./include/cgen/bitset.h

Tom


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: cgen/bitset.h missing??
  2010-03-25 20:08 ` Tom Tromey
@ 2010-03-25 20:19   ` Joel Sherrill
  2010-03-25 20:23     ` Tom Tromey
  0 siblings, 1 reply; 5+ messages in thread
From: Joel Sherrill @ 2010-03-25 20:19 UTC (permalink / raw)
  To: tromey; +Cc: gdb

On 03/25/2010 03:08 PM, Tom Tromey wrote:
>>>>>> "Joel" == Joel Sherrill<joel.sherrill@oarcorp.com>  writes:
>>>>>>              
> Joel>  It looks like Doug Evans moved it a few
> Joel>  months ago from opcodes/cgen-bitset.h to
> Joel>  cgen/bitset.h according to the ChaneLog
> Joel>  but I don't see it on the CVS head.
>
> Make sure you "cvs update -d".
>
> Joel>  $ find ../../gdb-7.0/ -name "*bitset*"
> Joel>  ../../gdb-7.0/include/opcode/cgen-bitset.h
> Joel>  ../../gdb-7.0/opcodes/cgen-bitset.c
>
> My CVS head checkout:
>
> opsy. find . -name '*bitset*'
> ./opcodes/cgen-bitset.c
> ./include/cgen/bitset.h
>
>    

Ahh.. I usually don't to the -d on the gdb
checkout because it seems to add code
that wasn't there at the checkout.

Thanks.  Builds now.
> Tom
>    


-- 
Joel Sherrill, Ph.D.             Director of Research&  Development
joel.sherrill@OARcorp.com        On-Line Applications Research
Ask me about RTEMS: a free RTOS  Huntsville AL 35805
    Support Available             (256) 722-9985



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: cgen/bitset.h missing??
  2010-03-25 20:19   ` Joel Sherrill
@ 2010-03-25 20:23     ` Tom Tromey
  2010-03-25 21:16       ` Christopher Faylor
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Tromey @ 2010-03-25 20:23 UTC (permalink / raw)
  To: Joel Sherrill; +Cc: gdb

>>>>> "Joel" == Joel Sherrill <joel.sherrill@OARcorp.com> writes:

Joel> Ahh.. I usually don't to the -d on the gdb
Joel> checkout because it seems to add code
Joel> that wasn't there at the checkout.

Yeah .. actually, I never use "update" with gdb, because cvs won't
remember the modules I used at checkout time, and so that will pull in
all kinds of stuff from the src repository.  Instead I just re-run the
original checkout command.  This respects modules and is as efficient as
update anyway.

Tom


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: cgen/bitset.h missing??
  2010-03-25 20:23     ` Tom Tromey
@ 2010-03-25 21:16       ` Christopher Faylor
  0 siblings, 0 replies; 5+ messages in thread
From: Christopher Faylor @ 2010-03-25 21:16 UTC (permalink / raw)
  To: Joel Sherrill, Tom Tromey, gdb

On Thu, Mar 25, 2010 at 02:22:49PM -0600, Tom Tromey wrote:
>>>>>> "Joel" == Joel Sherrill <joel.sherrill@OARcorp.com> writes:
>
>Joel> Ahh.. I usually don't to the -d on the gdb
>Joel> checkout because it seems to add code
>Joel> that wasn't there at the checkout.
>
>Yeah .. actually, I never use "update" with gdb, because cvs won't
>remember the modules I used at checkout time, and so that will pull in
>all kinds of stuff from the src repository.  Instead I just re-run the
>original checkout command.  This respects modules and is as efficient as
>update anyway.

I usually do something like:

cvs update -d */.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-03-25 21:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-25 19:10 cgen/bitset.h missing?? Joel Sherrill
2010-03-25 20:08 ` Tom Tromey
2010-03-25 20:19   ` Joel Sherrill
2010-03-25 20:23     ` Tom Tromey
2010-03-25 21:16       ` Christopher Faylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox