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
81e5bc3d
Commit
81e5bc3d
authored
Nov 06, 2002
by
John David Anglin
Committed by
John David Anglin
Nov 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa64-hpux.h (LDD_SUFFIX, PARSE_LDD_OUTPUT): Define.
From-SVN: r58863
parent
021fa809
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
gcc/ChangeLog
+4
-0
gcc/config/pa/pa64-hpux.h
+15
-0
No files found.
gcc/ChangeLog
View file @
81e5bc3d
2002
-
11
-
06
John
David
Anglin
<
dave
@hiauly1
.
hia
.
nrc
.
ca
>
*
pa64
-
hpux
.
h
(
LDD_SUFFIX
,
PARSE_LDD_OUTPUT
)
:
Define
.
2002
-
11
-
06
Alexandre
Oliva
<
aoliva
@redhat
.
com
>
*
config
/
mips
/
mips
.
md
(
call_value_multiple_internal2
)
:
Use
dla
for
...
...
gcc/config/pa/pa64-hpux.h
View file @
81e5bc3d
...
...
@@ -135,6 +135,21 @@ do { \
#undef STARTFILE_SPEC
#define STARTFILE_SPEC "%{!shared: %{!symbolic: crt0.o%s}}"
/* Since we are not yet using .init and .fini sections, we need to
explicitly arrange to run the global constructors and destructors.
HPUX 11 has ldd and we use it to determine the dependencies of
dynamic objects. It might be possible to use the ld options for
running initializers and terminators and thereby avoid the necessity
of running ldd, but unfortunately the options are different for
the two linkers. */
#define LDD_SUFFIX "/usr/ccs/bin/ldd"
/* Skip to first '>' then advance to '/' at the beginning of the filename. */
#define PARSE_LDD_OUTPUT(PTR) \
do { \
while (*PTR != '>') PTR++; \
while (*PTR != '/') PTR++; \
} while (0)
#endif
/* Switch into a generic section. */
...
...
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