Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Having issues with OpenGL (I think)
View unanswered posts
View posts from last 24 hours

Goto page 1, 2  Next  
Reply to topic    Gentoo Forums Forum Index Gentoo on AMD64
View previous topic :: View next topic  
Author Message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 2:48 am    Post subject: Having issues with OpenGL (I think) Reply with quote

Hi all,

I posted a thread this morning on another section of these forums, but now I am thinking the issue is more specific to amd64. The linked thread has the relevent output of 'emerge info', etc.

So, I'll just continue with what I have stumbled into tonight with my investigating.

Given the error was related to -lGLU I did some more searching and ran the following commands:

Code:

localhost ~ # equery files opengl | grep libGL
/usr/lib64/libGLU.a
/usr/lib64/libGLU.la
/usr/lib64/libGLU.so -> libGLU.so.1.3
/usr/lib64/libGLU.so.1 -> libGLU.so.1.3
/usr/lib64/libGLU.so.1.3
/usr/lib64/libGLw.a
/usr/lib64/libGLw.so -> libGLw.so.1.0
/usr/lib64/libGLw.so.1 -> libGLw.so.1.0
/usr/lib64/libGLw.so.1.0
/usr/lib64/modules/extensions/libGLcore.a
/usr/lib64/opengl/xorg-x11/lib/libGL.a
/usr/lib64/opengl/xorg-x11/lib/libGL.la
/usr/lib64/opengl/xorg-x11/lib/libGL.so -> libGL.so.1.2
/usr/lib64/opengl/xorg-x11/lib/libGL.so.1 -> libGL.so.1.2
/usr/lib64/opengl/xorg-x11/lib/libGL.so.1.2
/usr/share/doc/xorg-x11-6.8.2-r5/libGL.txt
localhost ~ # glxinfo
glxinfo: error while loading shared libraries: libGLU.so.1: cannot open shared object file: No such file or directory


Is libGLU installed in the wrong place? should it be in /usr/lib?

Perhaps I need to create a symbolic link into /usr/lib?

Code:

localhost ~ # ls -l /usr/lib/libGL*
-rw-r--r--  1 root root 713 Sep 26 00:36 /usr/lib/libGL.la
localhost ~ # ls -l /usr/lib64/libGL*
-rw-r--r--  1 root root 713 Sep 26 00:36 /usr/lib64/libGL.la
localhost ~ # ls -l /usr/lib64/libGLU*
ls: /usr/lib64/libGLU*: No such file or directory


I am just guessing since this is all severely new to me. So, I am just guessing based on the fact that libGL.la appears in both /usr/lib and /usr/lib64...

Would anyone be able to lend some insight to this for me? Again the original post I liked above has more details that I posted this morning.

Thanks in advance for any help!

Cheers,
Keith.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 3:05 am    Post subject: Reply with quote

What video driver are you using? (ati, nvidia, xorg-x11)
Have you done one of the following for your driver
Code:
opengl-update ati
opengl-update nvidia
opengl-update xorg-x11

What is the output of
Code:
cat /etc/ld.so.conf
cat /etc/env.d/03opengl
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 3:16 am    Post subject: Reply with quote

Hi headrush,

I seem to be alternating between

opengl-update nvidia
and
opengl-update xorg-x11

depending on what the latest thing I have found on Google to try is :)

I just ran opengl-update nvidia again to make sure I am using the nvidia drivers.

Results of the cat's you asked for:

Code:

localhost ~ # opengl-update nvidia
 * opengl-update is deprecated and is just a frontend to the opengl
 * eselect module.  In the future, opengl-update will be removed
 * from portage.  Please see 'eselect opengl help'
Switching to nvidia OpenGL interface... done
localhost ~ # cat /etc/ld.so.conf
# ld.so.conf autogenerated by eselect
# Make all changes to /etc/env.d files
/usr/local/lib
/usr/lib32/opengl/nvidia/lib
/usr/lib64/opengl/nvidia/lib
/lib
/usr/lib
/lib32
/usr/lib32
/usr/local/lib32
/lib64
/usr/lib64
/usr/local/lib64
/usr/x86_64-pc-linux-gnu/lib
/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.4
/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.4/32
/usr/lib64/mozilla-firefox
/usr/lib64/mozilla
/opt/blackdown-jdk-1.4.2.02/jre/lib/amd64/
/opt/blackdown-jdk-1.4.2.02/jre/lib/amd64/native_threads/
/opt/blackdown-jdk-1.4.2.02/jre/lib/amd64/classic/
/opt/blackdown-jdk-1.4.2.02/jre/lib/amd64/server/
/usr/qt/3/lib
/usr/qt/3/lib32
/usr/qt/3/lib64
/usr/kde/3.4/lib
/usr/kde/3.4/lib32
/usr/kde/3.4/lib64
/usr/lib64/nspr
/usr/lib64/nss
/emul/linux/x86/lib
/emul/linux/x86/usr/lib
/usr/games/lib
/usr/lib/libstdc++-v3/

localhost ~ # cat /etc/env.d/03opengl
# Configuration file for eselect
# This file has been automatically generated.
LDPATH="/usr/lib32/opengl/nvidia/lib:/usr/lib64/opengl/nvidia/lib"
OPENGL_PROFILE="nvidia"


Does that help?

Cheers,
Keith.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 3:36 am    Post subject: Reply with quote

The two outputs in your first post don't match.
You have several files listed in /lib/lib64/ named libGL... but your output of ls -l /lib/lib64/libGL* only shows one.

What is the output of
Code:
emerge xorg-x11 -pv

Maybe xorg wasn't compiled with opengl support.
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 3:38 am    Post subject: Reply with quote

Here ya go:

Code:

localhost ~ # emerge xorg-x11 -pv

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild   R   ] x11-base/xorg-x11-6.8.2-r5  (-3dfx) (-3dnow) +bitmap-fonts -cjk -debug -dlloader -dmx -doc* -font-server* -insecure-drivers +ipv6 -minimal (-mmx) +nls -nocxx +opengl +pam -sdk (-sse) -static +truetype-fonts +type1-fonts (-uclibc) -xprint +xv 0 kB

Total size of downloads: 0 kB


Cheers,
Keith.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 3:44 am    Post subject: Reply with quote

Seems your missing some files. What is the output of
Code:
qpkg -tc -v xorg-x11
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 3:46 am    Post subject: Reply with quote

Hmmm....

Code:

localhost ~ # qpkg -tc -v xorg-x11
-su: qpkg: command not found
localhost ~ # emerge -tp qpkg

These are the packages that I would merge, in reverse order:

Calculating dependencies
emerge: there are no ebuilds to satisfy "qpkg".


What do I emerge to get qpkg installed to run that command for you?
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 3:48 am    Post subject: Reply with quote

qpkg seems to be deprecated... I should run equery instead?
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 3:49 am    Post subject: Reply with quote

youngka wrote:
qpkg seems to be deprecated... I should run equery instead?

Code:
emerge gentoolkit
to get it.

I would suggest the following also:
Code:
emerge nvidia-kernel
emerge nvidia-glx
eselect opengl set nvidia

Edit. Change from opengl-update to eselect.


Last edited by Headrush on Tue Sep 27, 2005 4:30 am; edited 2 times in total
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 4:02 am    Post subject: Reply with quote

Some more:

Code:

localhost ~ # emerge gentoolkit
Calculating dependencies ...done!

...

>>> original instance of package unmerged safely.

 * The following older scripts have been removed in this release:
 *     dep-clean, ewhich, mkebuild, pkg-clean, pkg-size

 * The qpkg and etcat tools are deprecated in favor of equery and
 * are no longer installed in /usr/bin in this release.
 * They are still available in /usr/share/doc/gentoolkit-0.2.1_pre7/deprecated/
 * if you *really* want to use them.

...



So it isn't included with the tools anymore....

Dunno if it helps at all (or hinders), but here is a few dumps from equery (not sure what you were looking for):

Code:

localhost ~ # equery list xorg-x11 && equery size xorg-x11 && equery depgraph xorg-x11
[ Searching for package 'xorg-x11' in all categories among: ]
 * installed packages
[I--] [  ] x11-base/xorg-x11-6.8.2-r5 (0)
[ Searching for packages matching xorg-x11... ]
* size of x11-base/xorg-x11-6.8.2-r5 ]
           Total files : 10386
    Inaccessible files : 21
           Total size  : 167055.99 KiB
[ Searching for packages matching xorg-x11... ]
* dependency graph for x11-base/xorg-x11-6.8.2-r5
`-- x11-base/xorg-x11-6.8.2-r5
 `-- sys-libs/zlib-1.2.3
 `-- sys-devel/flex-2.5.4a-r6
 `-- dev-libs/expat-1.95.8
 `-- media-libs/freetype-2.1.10
  `-- sys-libs/glibc-2.3.5-r1 (virtual/libc)
   `-- sys-kernel/linux-headers-2.6.11-r2 (virtual/os-headers)
   `-- sys-devel/gettext-0.14.5
 `-- media-libs/fontconfig-2.3.2
  `-- sys-devel/patch-2.5.9-r1
 `-- x11-base/opengl-update-3.0.0
  `-- app-admin/eselect-opengl-1.0.2-r1
   `-- app-admin/eselect-0.9.6
    `-- sys-apps/sed-4.1.4
 `-- x11-misc/ttmkfdir-3.0.9-r3
 `-- media-libs/libpng-1.2.8
 `-- sys-libs/ncurses-5.4.20050319
  `-- sys-libs/gpm-1.20.1-r5
[ x11-base/xorg-x11-6.8.2-r5 stats: packages (18), max depth (4) ]


I re-emerged the nvidia-glx package and ran the eselect command...

And then (to test):
Code:

localhost ~ # emerge xmms-kde
Calculating dependencies ...done!
>>> emerge (1 of 2) media-libs/smpeg-0.4.4-r6 to /

...

/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.4/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lGLU
collect2: ld returned 1 exit status
make[1]: *** [glmovie] Error 1
make[1]: Leaving directory `/tmp/portage/smpeg-0.4.4-r6/work/smpeg-0.4.4'
make: *** [all-recursive] Error 1

!!! ERROR: media-libs/smpeg-0.4.4-r6 failed.
!!! Function src_compile, Line 51, Exitcode 2
!!! emake failed
!!! If you need support, post the topmost build error, NOT this status message.


So, it didn't change the problem... bleh :)

Cheers,
Keith.
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 4:07 am    Post subject: Reply with quote

Man I'm dense tonight... I re-read the install message for the tools and ran the command you requested:

Code:

localhost ~ # /usr/share/doc/gentoolkit-0.2.1_pre7/deprecated/qpkg/qpkg -tc -v xorg-x11
x11-base/xorg-x11-6.8.2-r5 *
/usr/lib64/X11/locale/koi8-r/Compose !not exist!
/usr/lib64/X11/locale/koi8-u/Compose !not exist!
/usr/lib64/X11/locale/koi8-c/Compose !not exist!
/usr/lib64/modules/extensions/libGLcore.a !not exist!
/usr/lib64/libGLU.a !not exist!
/usr/lib64/libGLU.so.1.3 !not exist!
/usr/lib64/libGLU.so.1 !not exist!
/usr/lib64/libGLU.so !not exist!
/usr/lib64/libGLw.so.1.0 !not exist!
/usr/lib64/libGLw.so.1 !not exist!
/usr/lib64/libGLw.so !not exist!
/usr/lib64/libGLw.a !not exist!
/usr/lib64/libGLU.la !not exist!
/usr/lib64/opengl/xorg-x11/lib/libGL.so.1.2 !not exist!
/usr/lib64/opengl/xorg-x11/lib/libGL.la !not exist!
/usr/lib64/opengl/xorg-x11/lib/libGL.a !not exist!
/usr/lib64/opengl/xorg-x11/extensions/libglx.a !not exist!
/usr/share/fonts/local/fonts.dir !mtime!
/usr/share/fonts/encodings/iso8859-6.8x.enc.gz !not exist!
/usr/share/fonts/encodings/iso8859-6.16.enc.gz !not exist!
/usr/share/fonts/encodings/encodings.dir !mtime!
/usr/share/fonts/misc/fonts.dir !mtime!
/usr/share/fonts/misc/encodings.dir !mtime!
/usr/share/fonts/75dpi/fonts.dir !mtime!
/usr/share/fonts/75dpi/encodings.dir !mtime!
/usr/share/fonts/100dpi/fonts.dir !mtime!
/usr/share/fonts/100dpi/encodings.dir !mtime!
/usr/share/fonts/cyrillic/fonts.dir !mtime!
/usr/share/fonts/cyrillic/encodings.dir !mtime!
/usr/share/fonts/Type1/fonts.scale !mtime!
/usr/share/fonts/Type1/fonts.dir !mtime!
/usr/share/fonts/Type1/encodings.dir !mtime!
/usr/share/fonts/Type1/fonts.cache-1 !mtime!
/usr/share/fonts/TTF/fonts.scale !mtime!
/usr/share/fonts/TTF/fonts.dir !mtime!
/usr/share/fonts/TTF/encodings.dir !mtime!
/usr/share/fonts/TTF/fonts.cache-1 !mtime!
/usr/share/fonts/ukr/fonts.dir !mtime!
/etc/X11/xorg.conf !mtime!
/usr/lib64/opengl/xorg-x11/lib/libGL.so !not exist!
/usr/lib64/opengl/xorg-x11/lib/libGL.so.1 !not exist!
41/10407


That's not looking so good!
Back to top
View user's profile Send private message
robbyjo
Guru
Guru


Joined: 06 Apr 2003
Posts: 462

PostPosted: Tue Sep 27, 2005 4:23 am    Post subject: Reply with quote

Did you recompile kernel? If so, you'll need to reemerge nvidia-kernel, and then nvidia-glx
HTH
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 4:27 am    Post subject: Reply with quote

Ya, a lot of files are missing.

And let me guess, you are running an unstable branch, aka ~amd64.

The stable version of gentoolkit hasn't deprecated qpkg yet :wink:

I would re-emerge xorg-x11 and see if it restores the files that are missing.
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 4:38 am    Post subject: Reply with quote

Hi robbyjo,

I did a kernel recompile the other day, but I did recompile the nvidia kernal and glx after. Just to be safe:

Code:

localhost ~ # ccache -C
Cleared cache
localhost ~ # ccache -s
cache directory                     /root/.ccache
cache hit                           4524
cache miss                         24141
called for link                     2369
multiple source files                 29
compile failed                       711
preprocessor error                   233
not a C/C++ file                     660
autoconf compile/link               4291
unsupported compiler option          526
no input file                       1906
files in cache                         0
cache size                             0 Kbytes
max cache size                       2.0 Gbytes
localhost ~ # emerge nvidia-kernel
Calculating dependencies ...done!
>>> emerge (1 of 1) media-video/nvidia-kernel-1.0.7676 to /
...
>>> media-video/nvidia-kernel-1.0.7676 merged.

localhost ~ # emerge nvidia-glx
Calculating dependencies ...done!
>>> emerge (1 of 1) media-video/nvidia-glx-1.0.7676-r1 to /
...
>>> media-video/nvidia-glx-1.0.7676-r1 merged.

localhost ~ # eselect opengl set nvidia
Switching to nvidia OpenGL interface... done

localhost ~ # emerge =media-libs/smpeg-0.4.4-r6
Calculating dependencies ...done!
>>> emerge (1 of 1) media-libs/smpeg-0.4.4-r6 to /
...
/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.4/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lGLU
collect2: ld returned 1 exit status
make[1]: *** [glmovie] Error 1
make[1]: Leaving directory `/tmp/portage/smpeg-0.4.4-r6/work/smpeg-0.4.4'
make: *** [all-recursive] Error 1

!!! ERROR: media-libs/smpeg-0.4.4-r6 failed.
!!! Function src_compile, Line 51, Exitcode 2
!!! emake failed
!!! If you need support, post the topmost build error, NOT this status message.


Same error... weee... I wan't to smack something! ;)

Cheers,
Keith.
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 4:40 am    Post subject: Reply with quote

Headrush wrote:
Ya, a lot of files are missing.

And let me guess, you are running an unstable branch, aka ~amd64.

The stable version of gentoolkit hasn't deprecated qpkg yet :wink:

I would re-emerge xorg-x11 and see if it restores the files that are missing.


Well, to be honest...I'm not sure what I am running :)

I just grabbed an amd64 iso off the gentoo site and installed it ;)

Is there an ISO you would recommend using (linky, linky)? I don't mind switching.... :)

Cheers,
Keith.
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 4:49 am    Post subject: Reply with quote

I'll download a new ISO and give it another shot... I'm downloading this one:

http://adelie.polymtl.ca/releases/amd64/current/installcd/install-amd64-universal-2005.1.iso
and
http://adelie.polymtl.ca/releases/amd64/current/packagecd/packages-amd64-2005.1.iso

Those should be ok, right?

Cheers,
Keith.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 4:49 am    Post subject: Reply with quote

youngka wrote:
Well, to be honest...I'm not sure what I am running :)

I just grabbed an amd64 iso off the gentoo site and installed it ;)

Is there an ISO you would recommend using (linky, linky)? I don't mind switching.... :)

Cheers,
Keith.

It's the same ISO. The branch you are using is set in /etc/make.conf

What is the output of
Code:
cat /etc/make.conf| grep ACCEPT_KEYWORDS


If you see ~amd64 I would suggest editing /etc/make.conf and change
Code:
ACCEPT_KEYWORDS="~amd64"

to
Code:
ACCEPT_KEYWORDS="amd64"
.
After that you'll have to do a
Code:
emerge -u world -pv

This will show all the packages that need to be recompiled. To actually do the work, repeat the command removing the -pv option.
Depending on the number of packages, this may take a while, but as a new user I would strongly suggest you stick with the stable branch.
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 4:50 am    Post subject: Reply with quote

Oh, and sincerely, thank you for helping me as much as you have with trying to run this problem down. I look forward to being able to know WTH I am doing enough to help someone else out at some point ;)

Cheers,
Keith.
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 4:58 am    Post subject: Reply with quote

DING, DING, DING!

Code:

localhost ~ # cat /etc/make.conf| grep ACCEPT_KEYWORDS
ACCEPT_KEYWORDS="~amd64"


Ok, I have changed it to "amd64" and ran "emerge -u world"... So, I'll have to post tomorrow after work to let you know if it worked! :)

Thanks again!

Cheers,
Keith.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 5:00 am    Post subject: Reply with quote

youngka wrote:
DING, DING, DING!

Code:

localhost ~ # cat /etc/make.conf| grep ACCEPT_KEYWORDS
ACCEPT_KEYWORDS="~amd64"


Ok, I have changed it to "amd64" and ran "emerge -u world"... So, I'll have to post tomorrow after work to let you know if it worked! :)

Thanks again!

Cheers,
Keith.

Good luck, I'll be around tomorrow too I'm sure. :wink:

Was xorg-x11 included in the list of packages to be recompiled??
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Tue Sep 27, 2005 2:40 pm    Post subject: Reply with quote

Headrush wrote:

Was xorg-x11 included in the list of packages to be recompiled??


You know, I got so caught up in the idea of fixing the whole install that I never specifically looked for xorg-x11 in the list to be re-emerged. I will say that it was a rather long list, and I think I did see "xorg" in the list at least once.

But, when I got up this morning, the build had failed. Aparently it doesn't occur to the build process that it needs to "emerge -u ant-tools" if it has already rolled the base Ant install back to an earlier version. I got it going again, but it kept dying on no XML::Parser library being available. So, I tried a couple things that didn't seem to work, and finally had the brainwave to reboot. Not such a good idea since /etc/init.d/net.lo is barfing all over the place now. So now I can't even download packages to fix things, lol.

I printed out the AMD64 Handbook here at work a few minutes ago, and I will go through the network configuration when I get home tonight to get my internet connection running again so I can continue fixing the build.

The XML::Parser Perl library seems to be used by more than a couple of the remaining packages, so I will have to tackle it first after I get eth0 working again. I did a "emerge -S XML::Parser" and found a Perl package that uses XML::Parser, and it looks like if I install that package, it will pull in all the libraries needed to get XML::Parser working. So, that's my gameplan for after work tonight. ;)

Cheers,
Keith.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Tue Sep 27, 2005 3:23 pm    Post subject: Reply with quote

Can you post the error from the XML-Parser compile?
Compiled OK here.

Rebooting might have left the system with a mismatch of versions, depending what needed to be downgraded/recompliled.
Don't worry, we'll work through it.
I have yet to corrupt or find a Gentoo system that couldn't be restored. (Includes deleting the entire /usr directory on one!) :)
Back to top
View user's profile Send private message
youngka
n00b
n00b


Joined: 04 Sep 2005
Posts: 50

PostPosted: Wed Sep 28, 2005 12:10 pm    Post subject: Reply with quote

Yay, I am back onto the Internet, and back into KDE ;)

I just have 4 [kde] packages left to emerge (based on "emerge -uD world -tvp").

The results of trying to get the package compiled that prompted this thread:

Success !

So, (hopefully) all is good now. Thanks for the advice to roll-back into the stable branch!

Now, I'm off to think of new ways to break my install ;)

Thanks again for the help!

Cheers,
Keith.
Back to top
View user's profile Send private message
pfrCalif
n00b
n00b


Joined: 07 Dec 2004
Posts: 10

PostPosted: Sun Nov 27, 2005 8:07 pm    Post subject: just eselect problem Reply with quote

All this seemed to be just a eselect problem for me,

I added in a couple masks in /etc/portage/package.mask:
Code:

>=app-admin/eselect-opengl-1.0.3
>=app-admin/eselect-1.0_rc1


reemered both of those to get the earlier version, then did a
Code:

eselect opengl set nvidia

(may have been superfluous)

and that fixed all compile problems for me. I'm in the middle of
a big 'emerge world' and that's when the trouble had started.
I'm on ~amd64 as well.

-Pascal
Back to top
View user's profile Send private message
chebe
Tux's lil' helper
Tux's lil' helper


Joined: 02 Mar 2004
Posts: 101
Location: New Caledonia

PostPosted: Mon Nov 28, 2005 10:19 pm    Post subject: Reply with quote

I confirm the eselect problem.

I was running eselect-1.0_rc2, did a downgrade to eselect-1.0_rc1
Code:
emerge =app-admin/eselect-1.0_rc1

then
Code:
eselect opengl set nvidia


and now my opengl is back in line, so I can compile wxGTK 2.6.2-r1 and vlc 0.84

:P

Thanks all for guiding me !
_________________
Unix is user friendly - it's just selective about who its friends are !
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Gentoo on AMD64 All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
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