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
65991ea3
Commit
65991ea3
authored
Oct 13, 2017
by
Jan Hubicka
Committed by
Jan Hubicka
Oct 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lto-lang.c (lto_post_options): Clean shlib flag when not doing PIC.
From-SVN: r253729
parent
9cdc325a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/lto/ChangeLog
+4
-0
gcc/lto/lto-lang.c
+2
-0
No files found.
gcc/lto/ChangeLog
View file @
65991ea3
2017-10-13 Jan Hubicka <hubicka@ucw.cz>
* lto-lang.c (lto_post_options): Clean shlib flag when not doing PIC.
2017-10-11 Nathan Sidwell <nathan@acm.org>
* lto.c (mentions_vars_p_decl_with_vis): Use
...
...
gcc/lto/lto-lang.c
View file @
65991ea3
...
...
@@ -854,11 +854,13 @@ lto_post_options (const char **pfilename ATTRIBUTE_UNUSED)
flag_pie is 2. */
flag_pie
=
MAX
(
flag_pie
,
flag_pic
);
flag_pic
=
flag_pie
;
flag_shlib
=
0
;
break
;
case
LTO_LINKER_OUTPUT_EXEC
:
/* Normal executable */
flag_pic
=
0
;
flag_pie
=
0
;
flag_shlib
=
0
;
break
;
case
LTO_LINKER_OUTPUT_UNKNOWN
:
...
...
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