* [gentoo-user] cant emerge kdelibs
@ 2005-07-10 13:29 Dave S
2005-07-10 15:39 ` Holly Bostick
0 siblings, 1 reply; 5+ messages in thread
From: Dave S @ 2005-07-10 13:29 UTC (permalink / raw
To: Gentoo List
Hi all,
I cannot emerge kdelibs on my 3000+ AMD, I have tried re-emerging qt
first (found this on the forum), I have edited /etc/make.conf and
removed my -O? flag, usually set to -O3 and tried repeatedly to
re-emerge kdelibs without success.
vanda_comp dave # emerge -p kdelibs gcc
These are the packages that I would merge, in order:
Calculating dependencies ...done!
[ebuild NS ] kde-base/kdelibs-3.4.1-r1
[ebuild R ] sys-devel/gcc-3.3.5.20050130-r1
vanda_comp dave #
#CFLAGS="-march=athlon-xp -O3 -pipe -fomit-frame-pointer"
CFLAGS="-march=athlon-xp -pipe -fomit-frame-pointer"
# If you set a CFLAGS above, then this line will set your default C++
flags to
# the same settings.
CXXFLAGS="${CFLAGS}"
Any suggestions ?
Dave
undefined -Wl,--no-undefined -Wl,--allow-shlib-undefined -avoid-version
-module -no-undefined -Wl,--no-undefined -Wl,--allow-shlib-undefined -R
/usr/kde/3.4/lib -R /usr/kde/3.4/lib -R /usr/qt/3/lib -R /usr/lib
kspell_aspellclient.lo kspell_aspelldict.lo ../../ui/libkspell2.la -laspell
grep: /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la: No such
file or directory
/bin/sed: can't read
/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la: No such file or
directory
libtool: link: `/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la'
is not a valid libtool archive
make[4]: *** [kspell_aspell.la] Error 1
make[4]: Leaving directory
`/var/tmp/portage/kdelibs-3.4.1-r1/work/kdelibs-3.4.1/kspell2/plugins/aspell'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory
`/var/tmp/portage/kdelibs-3.4.1-r1/work/kdelibs-3.4.1/kspell2/plugins'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/var/tmp/portage/kdelibs-3.4.1-r1/work/kdelibs-3.4.1/kspell2'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/var/tmp/portage/kdelibs-3.4.1-r1/work/kdelibs-3.4.1'
make: *** [all] Error 2
!!! ERROR: kde-base/kdelibs-3.4.1-r1 failed.
!!! Function kde_src_compile, Line 164, Exitcode 2
!!! died running emake, kde_src_compile:make
!!! If you need support, post the topmost build error, NOT this status
message.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] cant emerge kdelibs
2005-07-10 13:29 [gentoo-user] cant emerge kdelibs Dave S
@ 2005-07-10 15:39 ` Holly Bostick
2005-07-10 15:47 ` Holly Bostick
0 siblings, 1 reply; 5+ messages in thread
From: Holly Bostick @ 2005-07-10 15:39 UTC (permalink / raw
To: gentoo-user
Dave S schreef:
> Hi all,
>
> I cannot emerge kdelibs on my 3000+ AMD, I have tried re-emerging qt
> first (found this on the forum), I have edited /etc/make.conf and
> removed my -O? flag, usually set to -O3 and tried repeatedly to
> re-emerge kdelibs without success.
This has nothing to do with your CFLAGS, so you can put the -O setting
back (nothing said about the 'virtues' of -O3; it's your PC).
Anyway, here's part 1 of your problem:
> [ebuild R ] sys-devel/gcc-3.3.5.20050130-r1
And here's part 2:
> grep: /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la: No such
> file or directory
> /bin/sed: can't read
> /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la: No such file or
> directory
> libtool: link: `/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la'
> is not a valid libtool archive
If you notice, the libsdcc++ is being searched in a previous version of
gcc than the one you are now using (3.3.4 as opposed to 3.3.5). So when
you upgraded GCC, some of the libs weren't moved to the new location.
The way to fix that is:
# sh fix_libtool_files.sh
HTH,
Holly
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] cant emerge kdelibs
2005-07-10 15:39 ` Holly Bostick
@ 2005-07-10 15:47 ` Holly Bostick
2005-07-10 16:06 ` Dave S
0 siblings, 1 reply; 5+ messages in thread
From: Holly Bostick @ 2005-07-10 15:47 UTC (permalink / raw
To: gentoo-user
Holly Bostick schreef:
Oops, sorry, forgot part of the command:
> The way to fix that is:
>
> # sh fix_libtool_files.sh
>
should be
sh fix_libtool_files.sh 3.3.4
Sorry.
Holly
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] cant emerge kdelibs
2005-07-10 15:47 ` Holly Bostick
@ 2005-07-10 16:06 ` Dave S
2005-07-10 17:45 ` Dave S
0 siblings, 1 reply; 5+ messages in thread
From: Dave S @ 2005-07-10 16:06 UTC (permalink / raw
To: gentoo-user
Holly Bostick wrote:
>Holly Bostick schreef:
>Oops, sorry, forgot part of the command:
>
>
>
>>The way to fix that is:
>>
>># sh fix_libtool_files.sh
>>
>>
>>
>
>should be
>
>sh fix_libtool_files.sh 3.3.4
>
>Sorry.
>
>Holly
>
>
It fixed a lot of stuff - am re-trying to emerge kdelibs as I type :)
Dave
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] cant emerge kdelibs
2005-07-10 16:06 ` Dave S
@ 2005-07-10 17:45 ` Dave S
0 siblings, 0 replies; 5+ messages in thread
From: Dave S @ 2005-07-10 17:45 UTC (permalink / raw
To: gentoo-user
Dave S wrote:
>Holly Bostick wrote:
>
>
>
>>Holly Bostick schreef:
>>Oops, sorry, forgot part of the command:
>>
>>
>>
>>
>>
>>>The way to fix that is:
>>>
>>># sh fix_libtool_files.sh
>>>
>>>
>>>
>>>
>>>
>>should be
>>
>>sh fix_libtool_files.sh 3.3.4
>>
>>Sorry.
>>
>>Holly
>>
>>
>>
>>
>It fixed a lot of stuff - am re-trying to emerge kdelibs as I type :)
>
>Dave
>
>
Works a treat - Thanks Holly :-) :-) :-)
Dave
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-07-10 17:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-10 13:29 [gentoo-user] cant emerge kdelibs Dave S
2005-07-10 15:39 ` Holly Bostick
2005-07-10 15:47 ` Holly Bostick
2005-07-10 16:06 ` Dave S
2005-07-10 17:45 ` Dave S
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox