Bug 449237

Summary: /usr/include/gnu/stubs-32.h is missing
Product: [Fedora] Fedora Reporter: Jim Burlingame <jburlingame>
Component: glibcAssignee: Jakub Jelinek <jakub>
Status: CLOSED NOTABUG QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: 9   
Target Milestone: ---   
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2008-05-31 20:32:55 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Jim Burlingame 2008-05-31 20:15:23 UTC
Description of problem:
file /usr/include/gnu/stubs-32.h is missing

Version-Release number of selected component (if applicable):
glibc-headers-2.8-3.x86_64

How reproducible:
Compile a C source file with -m32 that includes <gnu/stubs.h>

Steps to Reproduce:
1.echo '#include <gnu/stubs.h>' > testfile.c
2.gcc -m32 -c testfile.c
3.
  
Actual results:
Compile error
/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or directory

Expected results:
No error

Additional info:
Prevents gcc-4.3.0 from compiling itself.

Comment 1 Jakub Jelinek 2008-05-31 20:32:55 UTC
User error.  Fedora 9 doesn't come by default with .i386.rpm packages on x86_64.
If you want 32-bit development support, you need to yum install glibc-devel.i386
(and similarly for any other development library you want to use).