Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
segfault compiling media-gfx/imagemagick-6.5.7.0
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Gentoo on Sparc
View previous topic :: View next topic  
Author Message
brundage
Tux's lil' helper
Tux's lil' helper


Joined: 02 Dec 2004
Posts: 138

PostPosted: Mon Jan 18, 2010 6:44 pm    Post subject: segfault compiling media-gfx/imagemagick-6.5.7.0 Reply with quote

I get a segfault in the same place every time I try to build imagemagick. Portage tree is recently sync'ed.
Thanks for the help.
--Dean
Code:
  CC     magick/magick_libMagickCore_la-deprecate.lo
./magick/draw-private.h: In function 'ColorFloodfillImage':
./magick/draw-private.h:52: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://bugs.gentoo.org/> for instructions.
make[1]: *** [magick/magick_libMagickCore_la-deprecate.lo] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: Leaving directory `/var/tmp/portage/media-gfx/imagemagick-6.5.7.0/work/ImageMagick-6.5.7-0'
make: *** [all] Error 2
 *
 * ERROR: media-gfx/imagemagick-6.5.7.0 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_compile
 *             environment, line 2818:  Called perl-app_src_compile
 *             environment, line 2491:  Called perl-module_src_compile
 *             environment, line 2529:  Called die
 * The specific snippet of code:
 *               emake OTHERLDFLAGS="${LDFLAGS}" ${mymake} || die "compilation failed";
 *  The die message:
 *   compilation failed
 *
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/log/portage/media-gfx:imagemagick-6.5.7.0:20100118-160527.log'.
 * The ebuild environment file is located at '/var/tmp/portage/media-gfx/imagemagick-6.5.7.0/temp/environment'.
 *

Code:
0 urzatron ImageMagick-6.5.7-0/magick # cat -n draw-private.h
    <snip>
    29  static inline MagickBooleanType GetFillColor(const DrawInfo *draw_info,
    30    const long x,const long y,PixelPacket *pixel)
    31  {
    32    Image
    33      *pattern;
    34 
    35    MagickBooleanType
    36      status;
    37 
    38    pattern=draw_info->fill_pattern;
    39    if (pattern == (Image *) NULL)
    40      {
    41        *pixel=draw_info->fill;
    42        return(MagickTrue);
    43      }
    44  #if defined(_OPENMP) && (_OPENMP >= 200203)
    45    #pragma omp critical
    46  #endif
    47    status=GetOneVirtualMethodPixel(pattern,TileVirtualPixelMethod,
    48      x+pattern->tile_offset.x,y+pattern->tile_offset.y,pixel,
    49      &pattern->exception);
    50    if (pattern->matte == MagickFalse)
    51      pixel->opacity=OpaqueOpacity;
    52    return(status);
    53  }

Code:
ImageMagick is configured as follows. Please verify that this configuration
matches your expectations.

Host system type: sparc-unknown-linux-gnu
Build system type: sparc-unknown-linux-gnu

                  Option                        Value
-------------------------------------------------------------------------------
Shared libraries  --enable-shared=yes           yes
Static libraries  --enable-static=yes           yes
Module support    --with-modules=yes            yes
GNU ld            --with-gnu-ld=yes             yes
Quantum depth     --with-quantum-depth=16       16
High Dynamic Range Imagery
                  --enable-hdri=yes             yes

Delegate Configuration:
BZLIB             --with-bzlib=yes              yes
Autotrace         --with-autotrace=no           no
DJVU              --with-djvu=no                no
DPS               --with-dps=no         no
FFTW              --with-fftw=no                no
FlashPIX          --with-fpx=no         no
FontConfig        --with-fontconfig=no          no
FreeType          --with-freetype=yes           yes
GhostPCL          None                          pcl6 (unknown)
GhostXPS          None                          gxps (unknown)
Ghostscript       None                          gs (8.64)
Ghostscript fonts --with-gs-font-dir=/usr/share/fonts/default/ghostscript       
/usr/share/fonts/default/ghostscript/
Ghostscript lib   --with-gslib=no               no
Graphviz          --with-gvc=no         
JBIG              --with-jbig=no                no
JPEG v1           --with-jpeg=yes               yes
JPEG-2000         --with-jp2=yes                yes
LCMS              --with-lcms=no                no
LQR               --with-lqr=yes                no
Magick++          --with-magick-plus-plus=yes   yes
OpenEXR           --with-openexr=no             no
PERL              --with-perl=yes               /usr/bin/perl
PNG               --with-png=yes                yes
RSVG              --with-rsvg=yes               no
TIFF              --with-tiff=yes               yes
Windows fonts     --with-windows-font-dir=/usr/share/fonts/corefonts    /usr/sha
re/fonts/corefonts/
WMF               --with-wmf=no         no
X11               --with-x=no                   no
XML               --with-xml=yes                yes
ZLIB              --with-zlib=yes               yes

X11 Configuration:
      X_CFLAGS        =
      X_PRE_LIBS      =
      X_LIBS          =
      X_EXTRA_LIBS    =

Options used to compile and link:
  PREFIX          = /usr
  EXEC-PREFIX     = /usr
  VERSION         = 6.5.7
  CC              = sparc-unknown-linux-gnu-gcc -std=gnu99
  CFLAGS          = -fopenmp -O2 -mcpu=ultrasparc3 -mtune=ultrasparc3 -pipe -fpr
ofile-use -Wall -W -pthread
  MAGICK_CFLAGS   = -fopenmp -O2 -mcpu=ultrasparc3 -mtune=ultrasparc3 -pipe -fpr
ofile-use -Wall -W -pthread
  CPPFLAGS        = -I/usr/include/ImageMagick
  PCFLAGS         = -fopenmp
  DEFS            = -DHAVE_CONFIG_H
  LDFLAGS         = -Wl,-O1
  MAGICK_LDFLAGS  = -L/usr/lib -Wl,-O1
  LIBS            = -lMagickCore -ltiff -lfreetype -ljpeg -lbz2 -lz -lm -lgomp -lpthread -lltdl
  CXX             = sparc-unknown-linux-gnu-g++
  CXXFLAGS        = -O2 -mcpu=ultrasparc3 -mtune=ultrasparc3 -pipe -fprofile-use -Wall -W -pthread

>>> Source configured.

Code:
0 urzatron log/portage # emerge --info
Portage 2.1.6.13 (default/linux/sparc/10.0/server, gcc-4.3.4, glibc-2.9_p20081201-r2, 2.6.30-gentoo-r8 sparc64)
=================================================================
System uname: Linux-2.6.30-gentoo-r8-sparc64-sun4u-with-gentoo-1.12.13
Timestamp of tree: Mon, 18 Jan 2010 15:30:24 +0000
app-shells/bash:     4.0_p35
dev-lang/python:     2.5.4-r3, 2.6.4
sys-apps/baselayout: 1.12.13
sys-apps/sandbox:    1.6-r2
sys-devel/autoconf:  2.13, 2.63-r1
sys-devel/automake:  1.5, 1.9.6-r2, 1.10.2
sys-devel/binutils:  2.18-r3
sys-devel/gcc-config: 1.4.1
sys-devel/libtool:   2.2.6b
virtual/os-headers:  2.6.27-r2
ABI="sparc32"
ACCEPT_KEYWORDS="sparc"
ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol"
APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias"
APACHE2_MPMS="worker"
ARCH="sparc"
AUTOCLEAN="yes"
BLOCKSIZE="K"
CBUILD="sparc-unknown-linux-gnu"
CDEFINE_sparc32="!__arch64__"
CDEFINE_sparc64="__arch64__"
CFLAGS="-O2 -mcpu=ultrasparc3 -mtune=ultrasparc3 -pipe -fprofile-use"
CFLAGS_sparc32=""
CHOST="sparc-unknown-linux-gnu"
CHOST_sparc32="sparc-unknown-linux-gnu"
CHOST_sparc64="sparc64-unknown-linux-gnu"
CLEAN_DELAY="5"
COLLISION_IGNORE="/lib/modules"
CONFIG_PROTECT="/etc"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/php/apache2-php5/ext-active/ /etc/php/cgi-php5/ext-active/ /etc/php/cli-php5/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/udev/rules.d"
CTARGETS_BINUTILS="sparc-unknown-linux-gnu sparc64-unknown-linux-gnu"
CTARGET_sparc32="sparc-unknown-linux-gnu"
CVS_RSH="ssh"
CXXFLAGS="-O2 -mcpu=ultrasparc3 -mtune=ultrasparc3 -pipe -fprofile-use"
DEFAULT_ABI="sparc32"
DISTDIR="/usr/portage/distfiles"
EDITOR="vim"
ELIBC="glibc"
EMERGE_DEFAULT_OPTS="--alphabetical --deep --verbose"
EMERGE_WARNING_DELAY="10"
ENV="/root/.shrc"
FEATURES="distlocks fixpackages parallel-fetch protect-owned sandbox sfperms strict unmerge-orphans userfetch userpriv usersandbox"
FETCHCOMMAND="/usr/bin/wget -t 5 -T 60 --passive-ftp -O "${DISTDIR}/${FILE}" "${URI}""
GENTOO_MIRRORS="http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/ http://www.cyberuse.com/gentoo/ http://gentoo.cites.uiuc.edu/pub/gentoo/"
HISTDIR="/root/.histdir"
HISTFILE="/root/.histdir/4453"
HISTSIZE="1000"
HOME="/root"
INFOPATH="/usr/share/info:/usr/share/binutils-data/sparc-unknown-linux-gnu/2.18/info:/usr/share/gcc-data/sparc-unknown-linux-gnu/4.3.4/info"
INPUT_DEVICES="keyboard mouse evdev"
KERNEL="linux"
KERNEL_ABI="sparc64"
LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text"
LDFLAGS="-Wl,-O1"
LDFLAGS_sparc32=""
LDFLAGS_sparc64="-m elf64_sparc"
LESS="-XmsR -Pm ?f%f:stdio. ?lbLine ?lb%lb ?pb(?pb%pb\% of ?pb%B bytes)"
LESSOPEN="|lesspipe.sh %s"
LIBDIR_amd64="lib64"
LIBDIR_amd64_fbsd="lib64"
LIBDIR_ppc="lib"
LIBDIR_ppc64="lib64"
LIBDIR_sparc32="lib"
LIBDIR_sparc64="lib64"
LIBDIR_x86="lib"
LIBDIR_x86_fbsd="lib32"
LOGNAME="root"
MAILHOST="urzatron"
MAILNAME="remus root"
MAILUSER="root"
MAKEOPTS="-j3 --load-average=5"
MANPATH="/root/man:/usr/share/man:/usr/local/man"
MULTILIB_ABIS="sparc32"
MULTILIB_STRICT_DENY="64-bit.*shared object"
MULTILIB_STRICT_DIRS="/lib32 /lib /usr/lib32 /usr/lib /usr/kde/*/lib32 /usr/kde/*/lib /usr/qt/*/lib32 /usr/qt/*/lib /usr/X11R6/lib32 /usr/X11R6/lib"
MULTILIB_STRICT_EXEMPT="(perl5|gcc|gcc-lib|binutils|eclipse-3|debug|portage)"
NETBEANS="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml"
OLDPWD="/root"
PAGER="less"
PATH="/root/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin"
PERL5LIB="/root/lib/perl"
PGPPATH="/root/.pgp"
PKGDIR="/usr/portage/binaries"
PORTAGE_ARCHLIST="ppc x86-openbsd ppc-openbsd ppc64 x86-winnt x86-fbsd ppc-aix alpha arm x86-freebsd s390 amd64 arm-linux x86-macos x64-openbsd ia64-hpux hppa x86-netbsd amd64-linux ia64-linux x86 sparc-solaris x64-freebsd sparc64-solaris x86-linux x64-macos sparc m68k-mint ia64 mips ppc-macos x86-interix hppa-hpux amd64-fbsd x64-solaris mips-irix m68k sh x86-solaris sparc-fbsd"
PORTAGE_BINHOST_CHUNKSIZE="3000"
PORTAGE_BIN_PATH="/usr/lib/portage/bin"
PORTAGE_COMPRESS_EXCLUDE_SUFFIXES="css gif htm[l]? jp[e]?g js pdf png"
PORTAGE_CONFIGROOT="/"
PORTAGE_DEBUG="0"
PORTAGE_DEPCACHEDIR="/var/cache/edb/dep"
PORTAGE_ELOG_CLASSES="log warn error"
PORTAGE_ELOG_MAILFROM="portage@localhost"
PORTAGE_ELOG_MAILSUBJECT="[portage] ebuild log for ${PACKAGE} on ${HOST}"
PORTAGE_ELOG_MAILURI="root"
PORTAGE_ELOG_SYSTEM="echo save"
PORTAGE_FETCH_CHECKSUM_TRY_MIRRORS="5"
PORTAGE_FETCH_RESUME_MIN_SIZE="350K"
PORTAGE_GID="250"
PORTAGE_INST_GID="0"
PORTAGE_INST_UID="0"
PORTAGE_PYM_PATH="/usr/lib/portage/pym"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_RSYNC_RETRIES="3"
PORTAGE_TMPDIR="/var/tmp"
PORTAGE_VERBOSE="1"
PORTAGE_WORKDIR_MODE="0700"
PORTDIR="/usr/portage"
PORT_LOGDIR="/var/log/portage"
PROFILE_ARCH="sparc64"
PROFILE_ONLY_VARIABLES="ARCH ELIBC KERNEL USERLAND"
PS1="%? %{%}%B%m%b%{%} %2C %# "
PWD="/var/log/portage"
PYTHONDOCS="/usr/share/doc/python-docs-2.5.4/html/lib"
QTDIR="/usr/qt/3"
RESUMECOMMAND="/usr/bin/wget -c -t 5 -T 60 --passive-ftp -O "${DISTDIR}/${FILE}" "${URI}""
ROOT="/"
ROOTPATH="/opt/bin:/usr/sparc-unknown-linux-gnu/gcc-bin/4.3.4:/usr/sparc-unknown-linux-gnu/sparc64-unknown-linux-gnu/gcc-bin/4.3.3"
RPMDIR="/usr/portage/rpm"
RUBYOPT="-rauto_gem"
RUBY_TARGETS="ruby18"
SAVEHIST="1000"
SHELL="/bin/zsh"
SHLVL="2"
STAGE1_USE="nptl nptlonly unicode gcc64"
STY="4452.emerge"
SYMLINK_LIB="no"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
TEMP="/root/tmp"
TERM="screen"
TERMCAP="SC|screen|VT 100/ANSI X3.64 virtual terminal:\
        :DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:bs:bt=\E[Z:\
        :cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:ct=\E[3g:\
        :do=^J:nd=\E[C:pt:rc=\E8:rs=\Ec:sc=\E7:st=\EH:up=\EM:\
        :le=^H:bl=^G:cr=^M:it#8:ho=\E[H:nw=\EE:ta=^I:is=\E)0:\
        :li#68:co#80:am:xn:xv:LP:sr=\EM:al=\E[L:AL=\E[%dL:\
        :cs=\E[%i%d;%dr:dl=\E[M:DL=\E[%dM:dc=\E[P:DC=\E[%dP:\
        :im=\E[4h:ei=\E[4l:mi:IC=\E[%d@:ks=\E[?1h\E=:\
        :ke=\E[?1l\E>:vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l:\
        :ti=\E[?1049h:te=\E[?1049l:us=\E[4m:ue=\E[24m:so=\E[3m:\
        :se=\E[23m:mb=\E[5m:md=\E[1m:mr=\E[7m:me=\E[m:ms:\
        :Co#8:pa#64:AF=\E[3%dm:AB=\E[4%dm:op=\E[39;49m:AX:\
        :vb=\Eg:G0:as=\E(0:ae=\E(B:\
        :ac=\140\140aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~..--++,,hhII00:\
        :po=\E[5i:pf=\E[4i:Z0=\E[?3h:Z1=\E[?3l:k0=\E[10~:\
        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:k6=\E[17~:\
        :k7=\E[18~:k8=\E[19~:k9=\E[20~:k;=\E[21~:F1=\E[23~:\
        :F2=\E[24~:F3=\E[2P:F4=\E[2Q:F5=\E[2R:F6=\E[2S:\
        :F7=\E[15;2~:F8=\E[17;2~:F9=\E[18;2~:FA=\E[19;2~:kb=^H:\
        :K2=\EOE:kB=\E[Z:kF=\E[1;2B:kR=\E[1;2A:*4=\E[3;2~:\
        :*7=\E[1;2F:#2=\E[1;2H:#3=\E[2;2~:#4=\E[1;2D:%c=\E[6;2~:\
        :%e=\E[5;2~:%i=\E[1;2C:kh=\E[1~:@1=\E[1~:kH=\E[4~:\
        :@7=\E[4~:kN=\E[6~:kP=\E[5~:kI=\E[2~:kD=\E[3~:ku=\EOA:\
        :kd=\EOB:kr=\EOC:kl=\EOD:km:"
TMP="/root/tmp"
TMPDIR="/root/tmp"
USE="a52 aac acl apache2 avahi berkdb bonjour bz2 bzip bzip2 cgi cli cracklib crypt cups cxx dbus dri dv dvd encode examples faad fastcgi ffmpeg flac fortran ftp gcc64 gdbm gpm hdri iconv imagemagick innodb jpeg jpeg2k ldap modules mp2 mp3 mpeg mudflap mysql ncurses nls nptl nptlonly offensive ogg openmp pam pcre perl png pppd python quicktime readline reflection ruby samba session sparc spl sqlite3 ssl subversion svg symlink sysfs tcpd threads tiff truetype unicode vhosts vim vim-syntax vorbis xine xml xorg xvid zeroconf zip zlib" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" APACHE2_MPMS="worker" ELIBC="glibc" INPUT_DEVICES="keyboard mouse evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" RUBY_TARGETS="ruby18" USERLAND="GNU"
USER="root"
USERLAND="GNU"
USE_EXPAND="ALSA_CARDS ALSA_PCM_PLUGINS APACHE2_MODULES APACHE2_MPMS CAMERAS CROSSCOMPILE_OPTS DVB_CARDS ELIBC FCDSL_CARDS FOO2ZJS_DEVICES FRITZCAPI_CARDS INPUT_DEVICES KERNEL LCD_DEVICES LINGUAS LIRC_DEVICES MISDN_CARDS NETBEANS_MODULES QEMU_SOFTMMU_TARGETS QEMU_USER_TARGETS RUBY_TARGETS SANE_BACKENDS USERLAND VIDEO_CARDS"
USE_EXPAND_HIDDEN="CROSSCOMPILE_OPTS ELIBC KERNEL USERLAND"
USE_ORDER="env:pkg:conf:defaults:pkginternal:env.d"
VIDEO_CARDS=""
WINDOW="0"
_="/usr/bin/emerge"
host="urzatron"


Last edited by brundage on Mon Jan 18, 2010 10:06 pm; edited 1 time in total
Back to top
View user's profile Send private message
pianosaurus
l33t
l33t


Joined: 19 Apr 2004
Posts: 944
Location: Bash$

PostPosted: Mon Jan 18, 2010 7:59 pm    Post subject: Reply with quote

Did you recently upgrade gcc? If you did, the toolchain may be inconsistent.
Have you tried a revdep-rebuild?

Also, you might want to change the subject to segfault compiling media-gfx/imagemagick-6.5.7.0, to attract the people with the right kind of knowledge. It is not imagemagick that segfaults, after all.
_________________
PKA Cuber
Please add [SOLVED] to the subject of your original post when you feel that your problem is resolved.
Adopt an unanswered post
Back to top
View user's profile Send private message
Mike Hunt
Watchman
Watchman


Joined: 19 Jul 2009
Posts: 5287

PostPosted: Mon Jan 18, 2010 8:04 pm    Post subject: Reply with quote

Cuber wrote:
Also, you might want to change the subject to segfault compiling media-gfx/imagemagick-6.5.7.0 on Sparc, to attract the people with the right kind of knowledge.


Fixed that for you. :)
Back to top
View user's profile Send private message
pianosaurus
l33t
l33t


Joined: 19 Apr 2004
Posts: 944
Location: Bash$

PostPosted: Mon Jan 18, 2010 8:12 pm    Post subject: Reply with quote

Mike Hunt wrote:
Fixed that for you. :)
Ah. Didn't notice that. :)
_________________
PKA Cuber
Please add [SOLVED] to the subject of your original post when you feel that your problem is resolved.
Adopt an unanswered post
Back to top
View user's profile Send private message
timeBandit
Bodhisattva
Bodhisattva


Joined: 31 Dec 2004
Posts: 2719
Location: here, there or in transit

PostPosted: Mon Jan 18, 2010 8:59 pm    Post subject: Reply with quote

Moved from Portage & Programming to Gentoo on Sparc.
_________________
Plants are pithy, brooks tend to babble--I'm content to lie between them.
Super-short f.g.o checklist: Search first, strip comments, mark solved, help others.
Back to top
View user's profile Send private message
brundage
Tux's lil' helper
Tux's lil' helper


Joined: 02 Dec 2004
Posts: 138

PostPosted: Mon Jan 18, 2010 10:06 pm    Post subject: Reply with quote

Cuber wrote:
Did you recently upgrade gcc? If you did, the toolchain may be inconsistent.
Have you tried a revdep-rebuild?

Also, you might want to change the subject to segfault compiling media-gfx/imagemagick-6.5.7.0, to attract the people with the right kind of knowledge. It is not imagemagick that segfaults, after all.


Thanks for changing the subject. Good point.

I have upgraded gcc lately. revdep-rebuild finds that dynamic linking on my system is consistent.
Back to top
View user's profile Send private message
pianosaurus
l33t
l33t


Joined: 19 Apr 2004
Posts: 944
Location: Bash$

PostPosted: Tue Jan 19, 2010 12:14 am    Post subject: Reply with quote

There have been several threads on this forum on how to upgrade gcc. The most complete solution is to read the Gentoo GCC Upgrade Guide (which involves running emerge -e world), but this is very time consuming. I have never done that, but make sure you do the rest at least (running fix_libtool_files.sh and reemerging libtool).
_________________
PKA Cuber
Please add [SOLVED] to the subject of your original post when you feel that your problem is resolved.
Adopt an unanswered post
Back to top
View user's profile Send private message
brundage
Tux's lil' helper
Tux's lil' helper


Joined: 02 Dec 2004
Posts: 138

PostPosted: Tue Jan 19, 2010 3:12 am    Post subject: Reply with quote

Cuber wrote:
There have been several threads on this forum on how to upgrade gcc. The most complete solution is to read the Gentoo GCC Upgrade Guide (which involves running emerge -e world), but this is very time consuming. I have never done that, but make sure you do the rest at least (running fix_libtool_files.sh and reemerging libtool).

I'll give that a try. I'm in the middle of a system upgrade anyay.
Back to top
View user's profile Send private message
brundage
Tux's lil' helper
Tux's lil' helper


Joined: 02 Dec 2004
Posts: 138

PostPosted: Wed Jan 20, 2010 3:06 pm    Post subject: Reply with quote

System rebuild & revdep-rebuild did not help. Time to file a bug?
Back to top
View user's profile Send private message
armin76
Retired Dev
Retired Dev


Joined: 24 Apr 2006
Posts: 174

PostPosted: Wed Feb 10, 2010 7:30 pm    Post subject: Reply with quote

What machine is this?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Gentoo on Sparc All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum