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
82a298a9
Commit
82a298a9
authored
Feb 24, 1999
by
Jim Wilson
Committed by
Jim Wilson
Feb 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix cross compiler build failure in dbxout.c.
* dbxout.c (gstab.h): Use if CROSS_COMPILE. From-SVN: r25417
parent
d7cdf113
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+2
-0
gcc/dbxout.c
+4
-2
No files found.
gcc/ChangeLog
View file @
82a298a9
Wed
Feb
24
17
:
47
:
28
1999
Jim
Wilson
<
wilson
@cygnus
.
com
>
*
dbxout
.
c
(
gstab
.
h
)
:
Use
if
CROSS_COMPILE
.
*
dwarf2out
.
c
(
add_location_or_const_value_attribute
)
:
Add
big
endian
correction
for
parms
passed
in
regs
but
living
on
the
stack
.
...
...
gcc/dbxout.c
View file @
82a298a9
...
...
@@ -164,8 +164,10 @@ static int source_label_number = 1;
#endif
/* If there is a system stab.h, use it. Otherwise, use our own. */
#if defined (USG) || !defined (HAVE_STAB_H)
/* ??? This is supposed to describe the target's stab format, so using
the host HAVE_STAB_H appears to be wrong. For now, we use our own file
when cross compiling. */
#if defined (USG) || !defined (HAVE_STAB_H) || defined (CROSS_COMPILE)
#include "gstab.h"
/* If doing DBX on sysV, use our own stab.h. */
#else
#include <stab.h>
...
...
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