Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Xorg 6.8.0 & libbitmap.a
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Duplicate Threads
View previous topic :: View next topic  
Author Message
cpwp
n00b
n00b


Joined: 28 Aug 2002
Posts: 67
Location: Ripley, Derbyshire, UK

PostPosted: Tue Sep 14, 2004 7:48 am    Post subject: Xorg 6.8.0 & libbitmap.a Reply with quote

Anyone have any ideas as to what could be causing Xorg to bail out like this? I am running ACCEPT_KEYWORDS="~x86"

Regards

CPWP

Code:
X Protocol Version 11, Revision 0, Release 6.8
Build Operating System: Linux 2.6.8-gentoo-r3 i686 [ELF]
Current Operating System: Linux snoop 2.6.8-gentoo-r3 #9 Mon Sep 13 07:36:35 BST 2004 i686
Build Date: 13 September 2004
   Before reporting problems, check http://wiki.X.Org
   to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Sep 14 04:45:10 2004
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen 1" (0)
(**) |   |-->Monitor "screen1"
(**) |   |-->Device "card1"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/CID/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/,/usr/share/fonts/local/,/usr/share/fonts/Speedo/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
   X.Org ANSI C Emulation: 0.2
   X.Org Video Driver: 0.7
   X.Org XInput driver : 0.4
   X.Org Server Extension : 0.2
   X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
Duplicate symbol __i686.get_pc_thunk.bx in /usr/X11R6/lib/modules/fonts/libbitmap.a:bitmapmod.o
Also defined in /usr/X11R6/lib/modules/fonts/libbitmap.a

Fatal server error:
Module load failure


Please consult the The X.Org Foundation support
    at http://wiki.X.Org
 for help.
Please also check the log file at "/var/log/Xorg.0.log" for additional information.
Back to top
View user's profile Send private message
Lasker
Guru
Guru


Joined: 17 Jul 2002
Posts: 445

PostPosted: Tue Sep 14, 2004 8:39 am    Post subject: Re: Xorg 6.8.0 & libbitmap.a Reply with quote

cpwp wrote:
Anyone have any ideas as to what could be causing Xorg to bail out like this? I am running ACCEPT_KEYWORDS="~x86"

The good news first: yes (I know).
The bad news: you are in deep trouble now :evil:
No, seriously, not that bad...
Let me guess: you are using a 'hardened' version of gcc, right?
There are currently some issues with gcc compiled with the hardened USE-flag, resulting in a broken libbitmap.a
Some people are currently working on it (google for "gcc libbitmap.a xorg" if you want to know more).
So, you just could wait, or... ok, you don't want, I see.
Or, if you still have another gcc version which was build without the hardened flag, remerge xorg-x11 with that version.
If not, remove the USE-flags "hardened" and, to be sure, "pic" and "pie" from /etc/make.conf (for now).
Then first remerge gcc, then xorg-x11 (don't hit me, I'm not guilty for that crap).
Be prepared to also have to recompile your kernel and your card-drivers with your new gcc, if your card-driver
(nvidia?) doesn't work anymore.
If it helps (don't thinks so), you're not alone: right now I finished the whole procedure.
At least my system is sane again! :twisted:
Back to top
View user's profile Send private message
cpwp
n00b
n00b


Joined: 28 Aug 2002
Posts: 67
Location: Ripley, Derbyshire, UK

PostPosted: Tue Sep 14, 2004 2:02 pm    Post subject: Reply with quote

Thanks for that, I would never have guessed that one!

I'll have to wait to recompile gcc, for some reason my cpufreq support is b0rked and has detected my CPU as running at 189MHz instead of 900MHz - I guess i should fix that first... ;-)

CPWP
Back to top
View user's profile Send private message
cpwp
n00b
n00b


Joined: 28 Aug 2002
Posts: 67
Location: Ripley, Derbyshire, UK

PostPosted: Tue Sep 14, 2004 8:10 pm    Post subject: Reply with quote

Yep, that sorted it. Many thanks.

CP
Back to top
View user's profile Send private message
Lasker
Guru
Guru


Joined: 17 Jul 2002
Posts: 445

PostPosted: Wed Sep 15, 2004 6:04 am    Post subject: Re: Xorg 6.8.0 & libbitmap.a Reply with quote

Glad to hear it works! 8)

I have to correct myself in a small detail, though:
Lasker wrote:

If not, remove the USE-flags "hardened" and, to be sure, "pic" and "pie" from /etc/make.conf (for now).

As I understand it now, the "pic" flag is the same as -fpic gcc option.
Anything not compiled with that flag will reject prelinking. Again: if I got that right.
I'll soon recompile xorg with that flag and I'll tell you, if it causes any problems...
Back to top
View user's profile Send private message
Rem
Tux's lil' helper
Tux's lil' helper


Joined: 07 Nov 2002
Posts: 108
Location: Netherlands

PostPosted: Thu Sep 16, 2004 10:37 am    Post subject: Reply with quote

Thanks, that really helped me out, had the same problem.
Back to top
View user's profile Send private message
Lasker
Guru
Guru


Joined: 17 Jul 2002
Posts: 445

PostPosted: Fri Sep 17, 2004 4:29 am    Post subject: Re: Xorg 6.8.0 & libbitmap.a Reply with quote

Lasker wrote:

As I understand it now, the "pic" flag is the same as -fpic gcc option.
Anything not compiled with that flag will reject prelinking. Again: if I got that right.
I'll soon recompile xorg with that flag and I'll tell you, if it causes any problems...

Here I'm back as promized.
Just finished the remerge, here my 1.impressions (and just finished means, take it with a pint of salt):
Looks like the pic-flag didn't brake anything, but also don't expect any remarkable performance increase.
Though it seems the X-server loads somewhat faster now. Also (with active xcompmgr), my problems with
fast-scrolling large numbers of text lines aren't gone, but it's better now. If scrolling in a 'human-readable' way,
there's no problem at all. Manually resizing seems slightly better now, but still not acceptable (personally, no
big deal since I don't need it often). Fast resizing (from task-bar) works fine, as it did before.
Back to top
View user's profile Send private message
drescherjm
Advocate
Advocate


Joined: 05 Jun 2004
Posts: 2790
Location: Pittsburgh, PA, USA

PostPosted: Fri Sep 17, 2004 9:16 pm    Post subject: Reply with quote

I have the same problem. Lets see if this works for me...

[EDIT]That did not work on the first pass as now xorg fails building but I am going to try a change to my CFLAGS and see if that helps.[/EDIT]
_________________
John

My gentoo overlay
Instructons for overlay
Back to top
View user's profile Send private message
amne
Bodhisattva
Bodhisattva


Joined: 17 Nov 2002
Posts: 6378
Location: Graz / EU

PostPosted: Sun May 01, 2005 4:59 pm    Post subject: Reply with quote

Moved to Duplicate Threads, please see USE=hardened breaks XOrg server for more information and direct any followups there, too.
_________________
Dinosaur week! (Ok, this thread is so last week)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Duplicate Threads 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