<div dir="ltr">Hi,<div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Feb 11, 2014 at 7:07 PM, Sylvestre Ledru <span dir="ltr"><<a href="mailto:sylvestre@debian.org" target="_blank">sylvestre@debian.org</a>></span> wrote:<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Do you mind if I apply this patch:<br>
Index: tools/gold/gold-plugin.cpp<br>
===================================================================<br>
--- tools/gold/gold-plugin.cpp (révision 201158)<br>
+++ tools/gold/gold-plugin.cpp (copie de travail)<br>
@@ -153,7 +153,11 @@<br>
<div class=""> switch (tv->tv_u.tv_val) {<br>
case LDPO_REL: // .o<br>
case LDPO_DYN: // .so<br>
</div>+#ifdef LDPO_PIE<br>
<div class=""> case LDPO_PIE: // position independent executable<br>
</div>+#else<br>
+ case 3:<br>
+#endif<br>
<div class="HOEnZb"><div class="h5"> output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;<br>
break;<br>
case LDPO_EXEC: // .exe<br></div></div></blockquote><div><br></div><div>Why not;</div><div><br></div><div>#ifndef LDPO_PIE</div><div>#define LDPO_PIE 3</div><div>#endif</div><div><br></div><div>Its cleaner this way.</div>
<div> </div></div></div></div>