Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c7b94907
Commit
c7b94907
authored
Feb 12, 2009
by
Michael Matz
Committed by
Michael Matz
Feb 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c (ASM_DEBUG_SPEC): Check for -g0.
From-SVN: r144122
parent
61e98967
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ChangeLog
+4
-0
gcc/gcc.c
+4
-4
No files found.
gcc/ChangeLog
View file @
c7b94907
2009-02-12 Michael Matz <matz@suse.de>
* gcc.c (ASM_DEBUG_SPEC): Check for -g0.
2009-02-12 Jakub Jelinek <jakub@redhat.com>
* dwarf2out.c (dwarf2out_finish): Force output of comp_unit_die
...
...
gcc/gcc.c
View file @
c7b94907
...
...
@@ -677,14 +677,14 @@ proper position among the other output files. */
&& defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
# define ASM_DEBUG_SPEC \
(PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
? "%{
gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs
}}" ASM_MAP \
: "%{
gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2
}}" ASM_MAP)
? "%{
!g0:%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}
}}" ASM_MAP \
: "%{
!g0:%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}
}}" ASM_MAP)
# else
# if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
# define ASM_DEBUG_SPEC "%{g*:
--gstabs
}" ASM_MAP
# define ASM_DEBUG_SPEC "%{g*:
%{!g0:--gstabs}
}" ASM_MAP
# endif
# if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
# define ASM_DEBUG_SPEC "%{g*:
--gdwarf2
}" ASM_MAP
# define ASM_DEBUG_SPEC "%{g*:
%{!g0:--gdwarf2}
}" ASM_MAP
# endif
# endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment