This is the mail archive of the gdb@sourceware.cygnus.com mailing list for the GDB project.


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

Re: AW: libGDB architecture


> Well, I did not make any snapshots yet (btw. how are they done? Running
> `make dist' tells me to look at some etc/ directory but I did not find
> anything useful there ... ?). 


Nothing terribly special.  I use a script.  Basically it does

cvs -Q co -P gdb
mv devo gdb-19990830   (our top-level dir here is called devo)
Sanitize               (an internal script that removes unreleased
                        bits of code as well as the CVS/ directories)

cd gdb-19990830
find . -type f -print | sort > ../manifest
for i in `cat ../manifest`
do
  md5sum $i >> gdb.md5
done

cd ..
tar cf - gdb-19990830 | bzip2 > gdb-19990830.tar.bz2

(lots of stuff to make the diff files)

I can send you the script if you think it'll help save you time.

Jason

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