This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: egcs-core-*.tar.gz includes libstdc++-v3 rather than egcs-g++-*.tar.gz
- To: "David O'Brien" <obrien at freebsd dot org>, Jeffrey A Law <law at cygnus dot com>
- Subject: Re: egcs-core-*.tar.gz includes libstdc++-v3 rather than egcs-g++-*.tar.gz
- From: Gerald Pfeifer <pfeifer at dbai dot tuwien dot ac dot at>
- Date: Sat, 14 Oct 2000 18:29:11 +0200 (CEST)
- cc: gcc at gcc dot gnu dot org
On Sun, 1 Oct 2000, David O'Brien wrote:
> I don't know if this has been mentioned or not, but libstdc++-v3/ is
> being bundled up in the egcs-core distribution rather than the egcs-g++
> distribution in the snapshots.
Fixed by the following patch. I hope, for this is the first time I delved
what's probably the best kept secret of the egcs and GCC projects. :-)
Jeff?
Gerald
PS: As a first step for future changes, may I put the snapshot script
into CVS, at wwwdocs/bin? You still could/would have control over the
script, but it would be easier for others to contribute...
--- snapshot.20001014 Sat Oct 14 09:06:52 2000
+++ snapshot Sat Oct 14 09:20:59 2000
@@ -43,7 +43,7 @@ find . -type f -print | sort > ../files_
~law/bin/brik -Gb -f ../files_$last_date > ../.brik_$last_date
cp ../.brik_$last_date ./.brik
cd ..
-rm -rf egcs/{libio,libstdc++,libf2c,libchill,libobjc}
+rm -rf egcs/{libio,libstdc++,libstdc++-v3,libf2c,libchill,libobjc}
rm -rf egcs/gcc/{testsuite,f,objc,cp,java,ch}
mv egcs egcs-$last_date
@@ -55,7 +55,7 @@ find . -type f -print | sort > ../files
~law/bin/brik -Gb -f ../files_$date > ../.brik_$date
cp ../.brik_$date ./.brik
cd ..
-rm -rf egcs/{libio,libstdc++,libf2c,libchill,libobjc}
+rm -rf egcs/{libio,libstdc++,libstdc++-v3,libf2c,libchill,libobjc}
rm -rf egcs/gcc/{testsuite,f,objc,cp,java,ch}
mv egcs egcs-$date
@@ -104,6 +104,7 @@ diff -Nrc3p egcs-$last_date/libchill eg
diff -Nrc3p egcs-$last_date/gcc/cp egcs-$date/gcc/cp > egcs-g++-$last_date-$date.diff
diff -Nrc3p egcs-$last_date/libio egcs-$date/libio >> egcs-g++-$last_date-$date.diff
diff -Nrc3p egcs-$last_date/libstdc++ egcs-$date/libstdc++ >> egcs-g++-$last_date-$date.diff
+diff -Nrc3p egcs-$last_date/libstdc++-v3 egcs-$date/libstdc++-v3 >> egcs-g++-$last_date-$date.diff
diff -Nrc3p egcs-$last_date/gcc/testsuite/g++.old-deja egcs-$date/gcc/testsuite/g++.old-deja > egcs-g++-tests-$last_date-$date.diff
@@ -134,7 +135,7 @@ tar cf - egcs-$date/.brik egcs-$date/gcc
tar cf - egcs-$date/.brik egcs-$date/gcc/objc egcs-$date/libobjc | gzip --best > egcs-objc-$date.tar.gz
tar cf - egcs-$date/.brik egcs-$date/gcc/java | gzip --best > egcs-java-$date.tar.gz
tar cf - egcs-$date/.brik egcs-$date/gcc/ch egcs-$date/libchill | gzip --best > egcs-chill-$date.tar.gz
-tar cf - egcs-$date/.brik egcs-$date/gcc/cp egcs-$date/libio egcs-$date/libstdc++ | gzip --best > egcs-g++-$date.tar.gz
+tar cf - egcs-$date/.brik egcs-$date/gcc/{cp,libio,libstdc,libstdc++-v3} | gzip --best > egcs-g++-$date.tar.gz
tar cf - egcs-$date/.brik egcs-$date/gcc/testsuite/g++.old-deja | gzip --best > egcs-g++-tests-$date.tar.gz
tar cf - egcs-$date/.brik egcs-$date/gcc/testsuite | gzip --best > egcs-tests-$date.tar.gz
tar cf - egcs-$date | gzip --best > egcs-$date.tar.gz