Re: gcc42 hangs

2010-02-01 Thread chameau

Hi,
I'm using this thread now, as I'm trying to update to gcc 4.3 from 4.2. It's
only for experimenting different compilers with the mex functions in Matlab.

Currently, i have :

-bash-3.2$ gcc --version
i686-apple-darwin9-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5577)

Xcode version 3.1.4
Macports version 1.8.2

sudo port install gcc43 

it hangs at the build... 

Anything new on this issue ? 

Thanks



Ryan Schmidt-24 wrote:
 
 
 On Apr 20, 2008, at 6:27 AM, Craig Niederberger wrote:
 
 Version of xcode: 3.0
 $ gcc --version
 i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5465)

 What version of MacPorts do you have? 1.6.0? trunk?
 $ port --version
 MacPorts 1.600
 (Not sure what trunk means)
 
 trunk is the latest not-yet-numbered version of MacPorts that's been  
 in development since the release of 1.6.0 / 1.600. I just wanted to  
 make sure you didn't have anything older than 1.6.0.
 
 
 What version of gcc42 is being built?
 Not sure how to figure that out--just typing sudo port install  
 gcc42 at this point
 
 port info gcc42 will tell you. I just want to make sure your ports  
 tree is up to date.
 
 
 Finally, what port are you ultimately trying to install that's  
 requiring gcc42?
 It was part of a port install R (the statistical package) that was  
 hanging on gcc42
 
 True, R itself does declare a dependency on gcc42.
 
 If gcc42 won't build for you but gcc43 will, you could try changing  
 the R portfile: change port:gcc42 to port:gcc43 and macports- 
 gcc-4.2 to macports-gcc-4.3. If R builds that way, you could file  
 a ticket requesting this change, and Cc the maintainer of R.
 
 ___
 macports-users mailing list
 macports-users@lists.macosforge.org
 http://lists.macosforge.org/mailman/listinfo/macports-users
 
 

-- 
View this message in context: 
http://old.nabble.com/gcc42-hangs-tp16786152p27403043.html
Sent from the MacPorts - Users mailing list archive at Nabble.com.

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: gcc42 hangs

2010-02-01 Thread Ryan Schmidt

On Feb 1, 2010, at 07:51, chameau wrote:

 sudo port install gcc43 
 
 it hangs at the build... 


It will take over an hour to build on a modern fast Intel Mac, and much longer 
on older slower Macs. How long have you let it go? You can use the debug switch 
to see what's happening:

sudo port -d install gcc43


___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: gcc42 hangs

2010-02-01 Thread Raphael Attie


Le 1 févr. 10 à 15:06, Ryan Schmidt a écrit :


sudo port install gcc43


it hangs at the build...



It will take over an hour to build on a modern fast Intel Mac, and  
much longer on older slower Macs. How long have you let it go? You  
can use the debug switch to see what's happening:


sudo port -d install gcc43


I see. I let it for about ~1 hour. I'll just run it again and will be  
more patient.

I am unfamiliar with building gcc. How come it is that slow ?

Will macport automatically change the symbolic links in /usr/bin ? or  
will it keep things internal to the macport tree (it's what i'd  
intuitively expect) ?



___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: gcc42 hangs

2010-02-01 Thread Raphael Attie


Le 1 févr. 10 à 15:35, Ryan Schmidt a écrit :

It will take over an hour to build on a modern fast Intel Mac, and  
much longer on older slower Macs. How long have you let it go? You  
can use the debug switch to see what's happening:


sudo port -d install gcc43


I see. I let it for about ~1 hour. I'll just run it again and will  
be more patient.

I am unfamiliar with building gcc. How come it is that slow ?


It's quite a large piece of software.

Will macport automatically change the symbolic links in /usr/bin ?  
or will it keep things internal to the macport tree (it's what i'd  
intuitively expect) ?


MacPorts will not change anything in /usr/bin and you should not  
either.


If you want gcc to be the MacPorts gcc43, then you should install  
the gcc_select port and use the gcc_select program to select the  
gcc43 version.



Does this solution is valid even if I want to test a third-party  
software that calls gcc ? For instance, Matlab is completely  
independent from Macports. Will the gcc_select program work only for  
macported softwares ?


For instance, to make Matlab use the version of gcc 4.2 instead of 4.0  
(i have both), i simply change the symbolic links in /usr/bin so that  
i can swap from gcc-4.0 to gcc-4.2. I can then restore the original  
links whenever a software needs the original gcc. This was quite handy  
for me. Is gcc_select really a cleaner solution than this ?


___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: gcc42 hangs - gcc_select

2010-02-01 Thread Raphael Attie


Le 1 févr. 10 à 16:07, Ryan Schmidt a écrit :

Does this solution is valid even if I want to test a third-party  
software that calls gcc ? For instance, Matlab is completely  
independent from Macports. Will the gcc_select program work only  
for macported softwares ?


For instance, to make Matlab use the version of gcc 4.2 instead of  
4.0 (i have both), i simply change the symbolic links in /usr/bin  
so that i can swap from gcc-4.0 to gcc-4.2. I can then restore the  
original links whenever a software needs the original gcc. This was  
quite handy for me. Is gcc_select really a cleaner solution than  
this ?


Yes, it is.

Apple's gcc_select will handle changing the symlinks in /usr/bin for  
you.


Our gcc_select will make the same kind of symlinks but in /opt/local/ 
bin. So all you have to do is have /opt/local/bin in your PATH,  
which the MacPorts installer should have already done for you, and  
now any software you build that wants gcc will use MacPorts gcc.


Note that using gcc_select (Apple's or ours) will have no effect for  
any port built using MacPorts. It only has effect for software you  
build manually on the command line.


I understand. Indeed, my PATH does contain the /opt/local/bin.

However, as the order of appearance in PATH matters, the software I  
build manually will use whichever gcc comes first, right ? In which  
case, if the macports-gcc pointed by the /opt/local/bin and the one in  
usr/bin are different, one will have to play a bit with the PATH's  
order, is that correct ? In the present case, as /opt/local/bin comes  
first in the PATH, the default will be to use the macported gcc. Is  
that correct ?





___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: gcc42 hangs

2008-04-24 Thread Ryan Schmidt


On Apr 20, 2008, at 6:27 AM, Craig Niederberger wrote:


Version of xcode: 3.0
$ gcc --version
i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5465)


What version of MacPorts do you have? 1.6.0? trunk?

$ port --version
MacPorts 1.600
(Not sure what trunk means)


trunk is the latest not-yet-numbered version of MacPorts that's been  
in development since the release of 1.6.0 / 1.600. I just wanted to  
make sure you didn't have anything older than 1.6.0.




What version of gcc42 is being built?
Not sure how to figure that out--just typing sudo port install  
gcc42 at this point


port info gcc42 will tell you. I just want to make sure your ports  
tree is up to date.



Finally, what port are you ultimately trying to install that's  
requiring gcc42?
It was part of a port install R (the statistical package) that was  
hanging on gcc42


True, R itself does declare a dependency on gcc42.

If gcc42 won't build for you but gcc43 will, you could try changing  
the R portfile: change port:gcc42 to port:gcc43 and macports- 
gcc-4.2 to macports-gcc-4.3. If R builds that way, you could file  
a ticket requesting this change, and Cc the maintainer of R.


___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo/macports-users


Re: gcc42 hangs

2008-04-20 Thread Craig Niederberger
Thanks super for helping, Ryan.

Version of xcode: 3.0
$ gcc --version
i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5465)

What version of MacPorts do you have? 1.6.0? trunk?
$ port --version
MacPorts 1.600
(Not sure what trunk means)

What version of gcc42 is being built?
Not sure how to figure that out--just typing sudo port install gcc42 at this
point

Finally, what port are you ultimately trying to install that's requiring
gcc42?
It was part of a port install R (the statistical package) that was hanging
on gcc42

Does any of this help?
Again, many thanks,
Craig

On Sat, Apr 19, 2008 at 5:56 PM, Ryan Schmidt [EMAIL PROTECTED]
wrote:

 On Apr 19, 2008, at 1:06 PM, Craig Niederberger wrote:

  sudo port install gcc42
 
  is hanging on a MacBook Air, Leopard 10.5.2
 
  It's been about 3 hours, and Building gcc42 with target all is stuck on
  the screen.
 


 On Apr 19, 2008, at 1:13 PM, Craig Niederberger wrote:

  Ironically, it finally errored out immediately after I sent the last
  post.  Can anyone help figure out what's going on here?  What's a Bootstrap
  comparison failure?  Any ideas how to get gcc42 to install?
 
  Many TIA,
  Craig
 
  ---  Building gcc42 with target all
  Error: Target org.macports.build returned: shell command  cd
  /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build
   make all  returned error 2
  Command output: make[4]: Nothing to be done for `all'.
  make[3]: Nothing to be done for `all'.
  make[4]: Nothing to be done for `all'.
  make[3]: Nothing to be done for `all'.
  true AR_FLAGS=rc CC_FOR_BUILD=/usr/bin/gcc-4.0 CFLAGS=-g
  -fkeep-inline-functions CXXFLAGS=-O2 CFLAGS_FOR_BUILD=-O2
  CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/bin/install
  INSTALL_DATA=/usr/bin/install -m 644 INSTALL_PROGRAM=/usr/bin/install
  INSTALL_SCRIPT=/usr/bin/install LDFLAGS= LIBCFLAGS=-g
  -fkeep-inline-functions LIBCFLAGS_FOR_TARGET=-O2 -O2  MAKE=make
  MAKEINFO=makeinfo --split-size=500 --split-size=500
  --split-size=500  PICFLAG= PICFLAG_FOR_TARGET= SHELL=/bin/sh
  EXPECT=expect RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local
  infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42
  prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2 AR=ar
  AS=as CC=/usr/bin/gcc-4.0 CXX=/usr/bin/g++-4.0
  LD=/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld LIBCFLAGS=-g
  -fkeep-inline-functions NM=nm PICFLAG= RANLIB=ranlib DESTDIR=
  DO=all multi-do # make
  make[3]: Nothing to be done for `all'.
  rm -f stage_current
  make[4]: Nothing to be done for `all'.
  make[3]: Nothing to be done for `all'.
  make[4]: Nothing to be done for `all'.
  make[3]: Nothing to be done for `all'.
  true AR_FLAGS=rc
  CC_FOR_BUILD=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/xgcc
  -B/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/
  -B/opt/local/i386-apple-darwin9.2.2/bin/ CFLAGS=-O2 -g
  -fomit-frame-pointer CXXFLAGS=-O2 CFLAGS_FOR_BUILD=-O2
  CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/bin/install
  INSTALL_DATA=/usr/bin/install -m 644 INSTALL_PROGRAM=/usr/bin/install
  INSTALL_SCRIPT=/usr/bin/install LDFLAGS= LIBCFLAGS=-O2 -g
  -fomit-frame-pointer LIBCFLAGS_FOR_TARGET=-O2 -O2  MAKE=make
  MAKEINFO=makeinfo --split-size=500 --split-size=500
  --split-size=500  PICFLAG= PICFLAG_FOR_TARGET= SHELL=/bin/sh
  EXPECT=expect RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local
  infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42
  prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2 AR=ar
  AS=as
  CC=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/xgcc
  -B/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/
  -B/opt/local/i386-apple-darwin9.2.2/bin/ CXX=/usr/bin/g++-4.0
  LD=/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld LIBCFLAGS=-O2 -g
  -fomit-frame-pointer NM=nm PICFLAG= RANLIB=ranlib DESTDIR= DO=all
  multi-do # make
  make[3]: Nothing to be done for `all'.
  make[3]: Nothing to be done for `all'.
  rm -f stage_current
  make[4]: Nothing to be done for `all'.
  make[3]: Nothing to be done for `all'.
  make[4]: Nothing to be done for `all'.
  make[3]: Nothing to be done for `all'.
  true AR_FLAGS=rc
  CC_FOR_BUILD=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/xgcc
  -B/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/
  -B/opt/local/i386-apple-darwin9.2.2/bin/ CFLAGS=-O2 -g
  -fomit-frame-pointer CXXFLAGS=-O2 CFLAGS_FOR_BUILD=-O2
  CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/bin/install
  INSTALL_DATA=/usr/bin/install -m 644 

gcc42 hangs

2008-04-19 Thread Craig Niederberger
Hi Gurus,

sudo port install gcc42

is hanging on a MacBook Air, Leopard 10.5.2

It's been about 3 hours, and Building gcc42 with target all is stuck on the
screen.

Any suggestions?

Many TIA,
Craig
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo/macports-users


gcc42 hangs

2008-04-19 Thread Craig Niederberger
Ironically, it finally errored out immediately after I sent the last post.
Can anyone help figure out what's going on here?  What's a Bootstrap
comparison failure?  Any ideas how to get gcc42 to install?

Many TIA,
Craig

---  Building gcc42 with target all
Error: Target org.macports.build returned: shell command  cd
/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build
 make all  returned error 2
Command output: make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
true AR_FLAGS=rc CC_FOR_BUILD=/usr/bin/gcc-4.0 CFLAGS=-g
-fkeep-inline-functions CXXFLAGS=-O2 CFLAGS_FOR_BUILD=-O2
CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/bin/install
INSTALL_DATA=/usr/bin/install -m 644 INSTALL_PROGRAM=/usr/bin/install
INSTALL_SCRIPT=/usr/bin/install LDFLAGS= LIBCFLAGS=-g
-fkeep-inline-functions LIBCFLAGS_FOR_TARGET=-O2 -O2  MAKE=make
MAKEINFO=makeinfo --split-size=500 --split-size=500
--split-size=500  PICFLAG= PICFLAG_FOR_TARGET= SHELL=/bin/sh
EXPECT=expect RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local
infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42
prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2 AR=ar
AS=as CC=/usr/bin/gcc-4.0 CXX=/usr/bin/g++-4.0
LD=/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld LIBCFLAGS=-g
-fkeep-inline-functions NM=nm PICFLAG= RANLIB=ranlib DESTDIR=
DO=all multi-do # make
make[3]: Nothing to be done for `all'.
rm -f stage_current
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
true AR_FLAGS=rc
CC_FOR_BUILD=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/xgcc
-B/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/
-B/opt/local/i386-apple-darwin9.2.2/bin/ CFLAGS=-O2 -g
-fomit-frame-pointer CXXFLAGS=-O2 CFLAGS_FOR_BUILD=-O2
CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/bin/install
INSTALL_DATA=/usr/bin/install -m 644 INSTALL_PROGRAM=/usr/bin/install
INSTALL_SCRIPT=/usr/bin/install LDFLAGS= LIBCFLAGS=-O2 -g
-fomit-frame-pointer LIBCFLAGS_FOR_TARGET=-O2 -O2  MAKE=make
MAKEINFO=makeinfo --split-size=500 --split-size=500
--split-size=500  PICFLAG= PICFLAG_FOR_TARGET= SHELL=/bin/sh
EXPECT=expect RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local
infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42
prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2 AR=ar
AS=as
CC=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/xgcc
-B/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/
-B/opt/local/i386-apple-darwin9.2.2/bin/ CXX=/usr/bin/g++-4.0
LD=/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld LIBCFLAGS=-O2 -g
-fomit-frame-pointer NM=nm PICFLAG= RANLIB=ranlib DESTDIR= DO=all
multi-do # make
make[3]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
rm -f stage_current
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
true AR_FLAGS=rc
CC_FOR_BUILD=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/xgcc
-B/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/
-B/opt/local/i386-apple-darwin9.2.2/bin/ CFLAGS=-O2 -g
-fomit-frame-pointer CXXFLAGS=-O2 CFLAGS_FOR_BUILD=-O2
CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/bin/install
INSTALL_DATA=/usr/bin/install -m 644 INSTALL_PROGRAM=/usr/bin/install
INSTALL_SCRIPT=/usr/bin/install LDFLAGS= LIBCFLAGS=-O2 -g
-fomit-frame-pointer LIBCFLAGS_FOR_TARGET=-O2 -O2  MAKE=make
MAKEINFO=makeinfo --split-size=500 --split-size=500
--split-size=500  PICFLAG= PICFLAG_FOR_TARGET= SHELL=/bin/sh
EXPECT=expect RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local
infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42
prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2 AR=ar
AS=as
CC=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/xgcc
-B/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc42/work/build/./prev-gcc/
-B/opt/local/i386-apple-darwin9.2.2/bin/ CXX=/usr/bin/g++-4.0
LD=/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld LIBCFLAGS=-O2 -g
-fomit-frame-pointer NM=nm PICFLAG= RANLIB=ranlib DESTDIR= DO=all
multi-do # make
make[3]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
make DESTDIR= RPATH_ENVVAR=DYLD_LIBRARY_PATH

Re: gcc42 hangs

2008-04-19 Thread Ryan Schmidt

On Apr 19, 2008, at 1:06 PM, Craig Niederberger wrote:


sudo port install gcc42

is hanging on a MacBook Air, Leopard 10.5.2

It's been about 3 hours, and Building gcc42 with target all is  
stuck on the screen.



On Apr 19, 2008, at 1:13 PM, Craig Niederberger wrote:

Ironically, it finally errored out immediately after I sent the  
last post.  Can anyone help figure out what's going on here?   
What's a Bootstrap comparison failure?  Any ideas how to get  
gcc42 to install?


Many TIA,
Craig

---  Building gcc42 with target all
Error: Target org.macports.build returned: shell command  cd /opt/ 
local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build  make all  returned error 2

Command output: make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
true AR_FLAGS=rc CC_FOR_BUILD=/usr/bin/gcc-4.0 CFLAGS=-g - 
fkeep-inline-functions CXXFLAGS=-O2 CFLAGS_FOR_BUILD=-O2  
CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/bin/install  
INSTALL_DATA=/usr/bin/install -m 644 INSTALL_PROGRAM=/usr/bin/ 
install INSTALL_SCRIPT=/usr/bin/install LDFLAGS= LIBCFLAGS=-g  
-fkeep-inline-functions LIBCFLAGS_FOR_TARGET=-O2 -O2   
MAKE=make MAKEINFO=makeinfo --split-size=500 --split- 
size=500 --split-size=500  PICFLAG=  
PICFLAG_FOR_TARGET= SHELL=/bin/sh EXPECT=expect  
RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local  
infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42  
prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2  
AR=ar AS=as CC=/usr/bin/gcc-4.0 CXX=/usr/bin/g++-4.0 LD=/ 
usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld LIBCFLAGS=-g -fkeep- 
inline-functions NM=nm PICFLAG= RANLIB=ranlib DESTDIR=  
DO=all multi-do # make

make[3]: Nothing to be done for `all'.
rm -f stage_current
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
true AR_FLAGS=rc CC_FOR_BUILD=/opt/local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build/./prev-gcc/xgcc -B/opt/local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build/./prev-gcc/ -B/opt/local/i386-apple-darwin9.2.2/ 
bin/ CFLAGS=-O2 -g -fomit-frame-pointer CXXFLAGS=-O2  
CFLAGS_FOR_BUILD=-O2 CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/ 
bin/install INSTALL_DATA=/usr/bin/install -m 644  
INSTALL_PROGRAM=/usr/bin/install INSTALL_SCRIPT=/usr/bin/ 
install LDFLAGS= LIBCFLAGS=-O2 -g -fomit-frame-pointer  
LIBCFLAGS_FOR_TARGET=-O2 -O2  MAKE=make MAKEINFO=makeinfo -- 
split-size=500 --split-size=500 --split-size=500   
PICFLAG= PICFLAG_FOR_TARGET= SHELL=/bin/sh EXPECT=expect  
RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local  
infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42  
prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2  
AR=ar AS=as CC=/opt/local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build/./prev-gcc/xgcc -B/opt/local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build/./prev-gcc/ -B/opt/local/i386-apple-darwin9.2.2/ 
bin/ CXX=/usr/bin/g++-4.0 LD=/usr/libexec/gcc/i686-apple- 
darwin9/4.0.1/ld LIBCFLAGS=-O2 -g -fomit-frame-pointer NM=nm  
PICFLAG= RANLIB=ranlib DESTDIR= DO=all multi-do # make

make[3]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
rm -f stage_current
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
make[3]: Nothing to be done for `all'.
true AR_FLAGS=rc CC_FOR_BUILD=/opt/local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build/./prev-gcc/xgcc -B/opt/local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build/./prev-gcc/ -B/opt/local/i386-apple-darwin9.2.2/ 
bin/ CFLAGS=-O2 -g -fomit-frame-pointer CXXFLAGS=-O2  
CFLAGS_FOR_BUILD=-O2 CFLAGS_FOR_TARGET=-O2 -O2  INSTALL=/usr/ 
bin/install INSTALL_DATA=/usr/bin/install -m 644  
INSTALL_PROGRAM=/usr/bin/install INSTALL_SCRIPT=/usr/bin/ 
install LDFLAGS= LIBCFLAGS=-O2 -g -fomit-frame-pointer  
LIBCFLAGS_FOR_TARGET=-O2 -O2  MAKE=make MAKEINFO=makeinfo -- 
split-size=500 --split-size=500 --split-size=500   
PICFLAG= PICFLAG_FOR_TARGET= SHELL=/bin/sh EXPECT=expect  
RUNTEST=runtest RUNTESTFLAGS= exec_prefix=/opt/local  
infodir=/opt/local/share/info libdir=/opt/local/lib/gcc42  
prefix=/opt/local tooldir=/opt/local/i386-apple-darwin9.2.2  
AR=ar AS=as CC=/opt/local/var/macports/build/ 
_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_ 
gcc42/work/build/./prev-gcc/xgcc -B/opt/local/var/macports/build/