Bug 75308 - A static int const class variable becomes undefined in the symbols of the object file
Summary: A static int const class variable becomes undefined in the symbols of the obj...
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: gcc
Version: 8.0
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Jakub Jelinek
QA Contact: Brian Brock
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2002-10-07 05:39 UTC by Mark Goodman
Modified: 2007-04-18 16:47 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2002-10-07 05:40:43 UTC
Embargoed:


Attachments (Terms of Use)
Test case for this bug (246 bytes, text/plain)
2002-10-07 05:40 UTC, Mark Goodman
no flags Details

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!


Note You need to log in before you can comment on or make changes to this bug.