Date: Wed, 10 Sep 2003 17:28:43 -0700 From: Steve Kargl <sgk@troutmask.apl.washington.edu> To: Michael Nottebrock <michaelnottebrock@gmx.net> Cc: freebsd-current@FreeBSD.org Subject: Re: Quo vadis, -CURRENT? (recent changes to cc & compatibility) Message-ID: <20030911002843.GB30852@troutmask.apl.washington.edu> In-Reply-To: <3F5FB691.3040403@gmx.net> References: <3F5F2774.9010408@gmx.net> <20030910144620.GA2438@troutmask.apl.washington.edu> <3F5F420B.5030202@gmx.net> <20030910165645.GA2839@troutmask.apl.washington.edu> <3F5FB691.3040403@gmx.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Sep 11, 2003 at 01:41:05AM +0200, Michael Nottebrock wrote:
> Steve Kargl wrote:
>
> >Why? The portmgr can tag the ports collection at any point in
> >time before or after the -pthread deprecation date.
>
> Steve, ports-freeze dates are set and published ahead of time just as dates
> for releases are.
And the cvs tag can and has in the past been slid forward or
backwards when unforseen problems occur.
> Don't bother telling me I'm whining, pointing at the handbook again and
> saying "don't expect anything to work on -CURRENT at any given time",
> you're shooting the messenger.
If you want to use "g++ -pedantic", do the following
cd $HOME
mkdir gcc
cd gcc
cvs -qz9 -d :pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc update\
-r tree-ssa-20020619-branch -PAd gcc
cd ..
mkdir obj
cd obj
../gcc/configure --enable-languages=c,c++ --prefix=$HOME
gmake bootstrap
gmake install
troutmask:sgk[205] $HOME/bin/g++ -static -pedantic -o a a.cc
troutmask:sgk[206] a
hello world
troutmask:sgk[207] cat a.cc
#include <iostream>
int main(void) {
std::cout << "hello world\n";
return 0;
}
--
Steve
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030911002843.GB30852>
