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
35e530c5
Commit
35e530c5
authored
Jan 24, 1995
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve PA shlib support
From-SVN: r8792
parent
b744bb36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
gcc/collect2.c
+9
-3
gcc/config/pa/pa.h
+2
-0
No files found.
gcc/collect2.c
View file @
35e530c5
...
...
@@ -1182,16 +1182,18 @@ main (argc, argv)
p
=
q
;
}
#ifdef LD_INIT_SWITCH
/* Tell the linker that we have initializer and finalizer functions. */
if
(
shared_obj
)
{
#ifdef LD_INIT_SWITCH
*
ld2
++
=
LD_INIT_SWITCH
;
*
ld2
++
=
"_GLOBAL__DI"
;
#endif
#ifdef LD_FINI_SWITCH
*
ld2
++
=
LD_FINI_SWITCH
;
*
ld2
++
=
"_GLOBAL__DD"
;
}
#endif
}
*
c_ptr
++
=
c_file
;
*
c_ptr
=
*
ld1
=
*
ld2
=
(
char
*
)
0
;
...
...
@@ -1777,13 +1779,17 @@ scan_prog_file (prog_name, which_pass)
case
3
:
if
(
which_pass
!=
PASS_LIB
)
fatal
(
"init function found in object %s"
,
prog_name
);
#ifndef LD_INIT_SWITCH
add_to_list
(
&
constructors
,
name
);
#endif
break
;
case
4
:
if
(
which_pass
!=
PASS_LIB
)
fatal
(
"init function found in object %s"
,
prog_name
);
fatal
(
"fini function found in object %s"
,
prog_name
);
#ifndef LD_FINI_SWITCH
add_to_list
(
&
destructors
,
name
);
#endif
break
;
default
:
/* not a constructor or destructor */
...
...
gcc/config/pa/pa.h
View file @
35e530c5
...
...
@@ -252,6 +252,8 @@ do { \
else \
PTR = 0; \
} while (0)
#define LD_INIT_SWITCH "+I"
/* target machine storage layout */
...
...
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