Bug 75308

Summary: A static int const class variable becomes undefined in the symbols of the object file
Product: [Retired] Red Hat Linux Reporter: Mark Goodman <mgoodman>
Component: gccAssignee: Jakub Jelinek <jakub>
Status: CLOSED NOTABUG QA Contact: Brian Brock <bbrock>
Severity: medium Docs Contact:
Priority: medium    
Version: 8.0   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2002-10-07 05:40:43 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:
Attachments:
Description Flags
Test case for this bug none

Description Mark Goodman 2002-10-07 05:39:07 UTC
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2b) Gecko/20020922

Description of problem:
A static int const class variable lists with the symbol type U in nm.  The
object file does not link because the constructor refers to it.


Version-Release number of selected component (if applicable):


How reproducible:
Always

Steps to Reproduce:
1. g++ testclass.cc -o testclass 
2.
3.
	

Actual Results:  /tmp/cc8FUTRi.o: In function
`TestClass::TestClass[in-charge](TestClass const*)':
/tmp/cc8FUTRi.o(.gnu.linkonce.t._ZN9TestClassC1EPKS_+0x17): undefined reference
to `TestClass::notDefined'
collect2: ld returned 1 exit status


Expected Results:  Nothing should have printed and the file should have
successfully linked.

Additional info:

Comment 1 Mark Goodman 2002-10-07 05:40:37 UTC
Created attachment 79124 [details]
Test case for this bug

Comment 2 Mark Goodman 2002-10-08 17:48:15 UTC
I had forget about the one definition rule.  Oops!