This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Possible build problems with the "current" gcc


Andrew,


--- Andrew Haley <aph@redhat.com> wrote:

> George R Goffe writes:
>  > 
>  > --- David Daney <ddaney@avtrex.com> wrote:
>  > 
>  > > This really looks like a java problem, CCing java@
>  > 
>  > I agree with this assessment. I'd like to get the person responsible for this
> code
>  > to take a look at my build logs. This is a FC6 x86_64 system by the way. Log
>  > attached.
>  >  
>  > > It looks like you are missing jack/jack.h
>  > > 
>  > > On my FC6/x86_64 system these files are not even built, so I don't get 
>  > > the missing jack/jack.h error.  Instead it builds the midi-alsa files.
>  > 
>  > Why would this happen?
>  >  
>  > > That is the only insight I can provide.
>  > > 
>  > > David Daney
>  > 
>  > Thanks for your response and your time on this issue.
> 
> We don't have enough information.  What was your configure line, for example?
> 
> Andrew.
> 

Apologies for not sending enough info. Here's the script that I use for "my" builds.
I always do make install manually.

George...


#!/bin/bash -xv

 echo ''                   >> start-end-times
 echo 'start time:' `date` >> start-end-times

 if [ $# = 0 ]
 then
    ncpus=1
 else
    ncpus=$1
 fi

 sysver=`uname -s`
 syslvl=`uname -r`

 osname=$sysver.$syslvl

 case $osname in
    SunOS.5.5)
       osname="$sysver.5.5"
       ;;
    SunOS.5.5.1)
       osname="$sysver.5.5.1"
       ;;
    SunOS.5.6)
       osname="$sysver.5.6"
       ;;
    SunOS.5.7)
       osname="$sysver.5.7"
       ;;
    SunOS.5.8)
       osname="$sysver.5.8"
       ;;
    SunOS.5.9)
       osname="$sysver.5.9"
       ;;
    SunOS.5.10)
       osname="$sysver.5.10"
       ;;
    SunOS.5.11)
       osname="$sysver.5.11"
       ;;
    Linux*)
       osname="$sysver"
       ;;
    *)
       printf "%s" 'Wrong system level encountered...'
       exit 86
 esac

# rhel gcc

                     
PATH=/usr/sbin:/sbin:/usr/bin:/bin:/usr/local/bin:/usr/ccs/bin:/usr/X11/bin:/usr/dt/bin

# /usr/lsd gcc

#PATH=/usr/lsd/$osname/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/local/bin:/usr/ccs/bin:/usr/X11/bin:/usr/dt/bin

 export PATH

 CONFIG_SHELL=/bin/bash
 export CONFIG_SHELL

 which gawk
 gawk --version

 which sed
 sed --version

 which gcc
 gcc --version

 which as
 as --version

 which ld
 ld --version

# go to the "right" directory...

 cd obj-i686-pc-linux-gnu

 make distclean

 ../gcc/configure --prefix=/usr/lsd/$osname --verbose   \
                  --x-includes=/usr/X11/include         \
                  --x-libraries=/usr/X11/lib

#                 --with-gmp                            \
#                 --with-gmp-dir=/usr                   \
#                 --with-mpfr                           \
#                 --with-mpfr-dir=/usr/lsd/$osname/lib

 make clean

 rc=$?

 if [ $rc ]
 then
    echo 'status of cmd='$rc'...'
 else
    echo 'status of cmd='$rc'...'
 fi

 make -j $ncpus bootstrap

 rc=$?

 if [ $rc ]
 then
    echo 'status of cmd='$rc'...'
 else
    echo 'status of cmd='$rc'...'
 fi

#make depend

#rc=$?

#if [ $rc ]
#then
#   echo 'status of cmd='$rc'...'
#else
#   echo 'status of cmd='$rc'...'
#fi

#make -j $ncpus

#rc=$?

#if [ $rc ]
#then
#   echo 'status of cmd='$rc'...'
#else
#   echo 'status of cmd='$rc'...'
#fi

#make install

#rc=$?

#if [ $rc ]
#then
#   echo 'status of cmd='$rc'...'
#else
#   echo 'status of cmd='$rc'...'
#fi

 cd ..

 echo 'end time:' `date` >> start-end-times

 exit 0


=====
    _/_/_/_/ _/_/_/_/ _/_/_/_/ _/_/_/   _/_/_/_/ _/_/_/_/ -----
   _/       _/       _/    _/ _/    _/ _/       _/
  _/  _/_/ _/_/_/_/ _/    _/ _/_/_/   _/  _/_/ _/_/_/_/ -----
 _/    _/ _/       _/    _/ _/   _/  _/    _/ _/
_/_/_/_/ _/_/_/_/ _/_/_/_/ _/    _/ _/_/_/_/ _/_/_/_/ -----
"It's not what you know that hurts you, It's what you know that ain't so." Will Rogers


 
____________________________________________________________________________________
Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html 


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