Bug 436374
Summary: | Error: file number 2 already allocated | ||||||
---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Doug Chapman <dchapman> | ||||
Component: | gcc | Assignee: | Jakub Jelinek <jakub> | ||||
Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
Severity: | medium | Docs Contact: | |||||
Priority: | medium | ||||||
Version: | rawhide | ||||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | ia64 | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2008-03-06 21:13:40 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: | |||||||
Bug Depends On: | |||||||
Bug Blocks: | 163350 | ||||||
Attachments: |
|
Description
Doug Chapman
2008-03-06 20:55:28 UTC
Created attachment 297101 [details]
asm file from g++ -g -S foo.cc
User error. You can't use -g twice. Either you use -g to compile foo.cc, then foo.s will already contain debug info, or you assemble with -g and the assembler adds debugging info for the assembler. If you both compile with -g, the assembler already contains debug info and thus adding assembler debug info for it is a bug. Thanks, I will get the offending package to fix their makefiles. - Doug |