mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
If LDPO_PIE is not defined (before binutils 2.23 version),
use the hardcoded declaration 3 See r201110 for the initial change llvm-svn: 201161
This commit is contained in:
parent
fd0028ac0b
commit
862cdddf18
@ -153,7 +153,14 @@ ld_plugin_status onload(ld_plugin_tv *tv) {
|
|||||||
switch (tv->tv_u.tv_val) {
|
switch (tv->tv_u.tv_val) {
|
||||||
case LDPO_REL: // .o
|
case LDPO_REL: // .o
|
||||||
case LDPO_DYN: // .so
|
case LDPO_DYN: // .so
|
||||||
|
#ifdef LDPO_PIE
|
||||||
case LDPO_PIE: // position independent executable
|
case LDPO_PIE: // position independent executable
|
||||||
|
#else
|
||||||
|
// FIXME: remove this declaration when we stop maintaining
|
||||||
|
// Ubuntu Quantal and Precise and Debian Wheezy (binutils 2.23 is
|
||||||
|
// required)
|
||||||
|
case 3:
|
||||||
|
#endif
|
||||||
output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;
|
output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;
|
||||||
break;
|
break;
|
||||||
case LDPO_EXEC: // .exe
|
case LDPO_EXEC: // .exe
|
||||||
|
Loading…
x
Reference in New Issue
Block a user