summaryrefslogtreecommitdiff
path: root/ld/plugin.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2012-06-14 23:44:37 +0000
committerH.J. Lu <hjl.tools@gmail.com>2012-06-14 23:44:37 +0000
commit8f602988821f0937df860525475cced620b43cf3 (patch)
tree7ee7af5436f1f515957a475fa334ae837ab3631b /ld/plugin.c
parent6202443634f4d5037c7f5230f04cd395beccc717 (diff)
downloadbinutils-redhat-8f602988821f0937df860525475cced620b43cf3.tar.gz
Handle link_info.pie in ld plugin
* plugin.c (set_tv_header): Handle link_info.pie.
Diffstat (limited to 'ld/plugin.c')
-rw-r--r--ld/plugin.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ld/plugin.c b/ld/plugin.c
index 2515888878..7e3d2a33ba 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -697,7 +697,9 @@ set_tv_header (struct ld_plugin_tv *tv)
case LDPT_LINKER_OUTPUT:
TVU(val) = (link_info.relocatable
? LDPO_REL
- : link_info.executable ? LDPO_EXEC : LDPO_DYN);
+ : (link_info.executable
+ ? (link_info.pie ? LDPO_PIE : LDPO_EXEC)
+ : LDPO_DYN));
break;
case LDPT_OUTPUT_NAME:
TVU(string) = output_filename;