1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

DT_FLAGS_1, DF_1_PIE

modified:   p_elf_enum.h
This commit is contained in:
John Reiser 2017-04-06 14:13:02 -07:00
parent b167374f13
commit b23b7ef85e

View File

@ -162,9 +162,14 @@
DT_CHECKSUM = 0x6ffffdf8, /* Only for prelink? */
DT_GNU_HASH = 0x6ffffef5, /* GNU-style hash table */
DT_VERSYM = 0x6ffffff0, /* version[] for each symbol */
DT_FLAGS_1 = 0x6ffffffb, /* State flags, see DF_1_* below. */
DT_VERDEF = 0x6ffffffc, /* version definitions[] */
DT_VERNEEDED= 0x6ffffffe /* version[] needed */
};
enum { // DF_1_ bits
DF_1_PIE = 0x08000000 /* Position-Independent Executable [main program] */
};
#endif