Bug 2684 - Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o": No symbols found
Summary: Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o": No symbols found
Status: RESOLVED FIXED
Alias: None
Product: xorg
Classification: Unclassified
Component: Driver/other (show other bugs)
Version: 6.8.2
Hardware: x86 (IA32) Linux (All)
: high normal
Assignee: Xorg Project Team
QA Contact:
URL:
Whiteboard:
Keywords:
: 2683 2685 (view as bug list)
Depends on:
Blocks:
 
Reported: 2005-03-09 07:38 UTC by Stefan Dirsch
Modified: 2005-04-15 19:48 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Stefan Dirsch 2005-03-09 07:38:32 UTC
Since updating to X.Org 6.8.2 I see these warning/errors in the Xserver 
logfile:

Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o":  No symbols found

Looking at the sources it seems that these symbols are only included when
USE_MMX is set (obviously it was not set in my build).

So can these warnings/errors be ignored and is this only a bug in Imakefile so
these files should not have been included by libGLcore.a when USE_MMX is not set?
Comment 1 Adam Jackson 2005-03-09 09:04:17 UTC
*** Bug 2685 has been marked as a duplicate of this bug. ***
Comment 2 Stefan Dirsch 2005-04-16 12:45:19 UTC
*** Bug 2683 has been marked as a duplicate of this bug. ***
Comment 3 Stefan Dirsch 2005-04-16 12:48:29 UTC
Already fixed in CVS Head by Egbert this way: 
 
--- programs/Xserver/hw/xfree86/loader/loader.c 29 Aug 2004 21:06:00 -0000       
1.3 
+++ programs/Xserver/hw/xfree86/loader/loader.c 11 Mar 2005 15:20:35 -0000 
@@ -1146,7 +1146,9 @@ 
            lseek(arfd, 1, SEEK_CUR);   /* make it an even boundary */ 
  
        if (tmp->private == (void *)-1L) { 
-           ErrorF("Skipping \"%s\":  No symbols found\n", tmp->name); 
+           xf86Msg(X_INFO, "Skipping \"%s\":  " 
+                   "object file contains no symbols\n", 
+                   tmp->name); 
            continue; 
        } else 
            ret = tmp->private; 
 


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.