Update <sys/exec_elf.h> to get the DF_* flags.

Change-Id: Ia9e785f6b95122f94ee3b01a312db1d5bb91a72e
This commit is contained in:
Elliott Hughes
2013-10-28 14:59:41 -07:00
parent 486d99f050
commit 74ce45972d
2 changed files with 8 additions and 10 deletions

View File

@@ -197,15 +197,6 @@ struct soinfo {
void CallFunction(const char* function_name, linker_function_t function);
};
// The possible DT_FLAGS bits are in
// http://www.sco.com/developers/gabi/latest/ch5.dynamic.html#dynamic_section
// but not in the upstream NetBSD <sys/exec_elf.h> header file ours is based on.
#define DF_ORIGIN 0x1
#define DF_SYMBOLIC 0x2
#define DF_TEXTREL 0x4
#define DF_BIND_NOW 0x8
#define DF_STATIC_TLS 0x10
extern soinfo libdl_info;
void do_android_update_LD_LIBRARY_PATH(const char* ld_library_path);