| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ |
| H A D | endian-ness_handling.patch | 163 /* Now read the DT_NEEDED and DT_SONAME entries. */ 168 - if (dyn_entry->d_tag == DT_NEEDED || dyn_entry->d_tag == DT_SONAME) 169 + if (read32(dyn_entry->d_tag, be) == DT_NEEDED || read32(dyn_entry->d_tag, be) == DT_SONAME) 175 - if (dyn_entry->d_tag == DT_NEEDED) 176 + if (read32(dyn_entry->d_tag, be) == DT_NEEDED) 308 /* Now read the DT_NEEDED and DT_SONAME entries. */ 313 - if (dyn_entry->d_tag == DT_NEEDED || dyn_entry->d_tag == DT_SONAME) 314 + if (read64(dyn_entry->d_tag, be) == DT_NEEDED || read64(dyn_entry->d_tag, be) == DT_SONAME) 320 - if (dyn_entry->d_tag == DT_NEEDED) 321 + if (read64(dyn_entry->d_tag, be) == DT_NEEDED)
|
| H A D | 32and64bit.patch | 174 + /* Now read the DT_NEEDED and DT_SONAME entries. */ 178 + if (dyn_entry->d_tag == DT_NEEDED || dyn_entry->d_tag == DT_SONAME) 183 + if (dyn_entry->d_tag == DT_NEEDED)
|
| /OK3568_Linux_fs/buildroot/package/dvblast/ |
| H A D | 0001-missing-lm.patch | 7 pulled in because libev as a DT_NEEDED ELF tag on libm.so.
|
| /OK3568_Linux_fs/buildroot/package/patchelf/ |
| H A D | 0006-Fix-shared-library-corruption-when-rerunning-patchel.patch | 17 (which should be RPATH and DT_NEEDED entries)
|
| H A D | 0003-Add-option-to-make-the-rpath-relative-under-a-specif.patch | 32 DT_NEEDED fields.
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | elf.h | 76 #define DT_NEEDED 1 macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | elf.h | 75 #define DT_NEEDED 1 macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | elf.h | 75 #define DT_NEEDED 1 macro
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | elf.h | 469 #define DT_NEEDED 1 /* string table offset of needed lib */ macro
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/ |
| H A D | elf_common.h | 378 #define DT_NEEDED 1 /* String table offset of a needed shared macro
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/ |
| H A D | elf_common.h | 378 #define DT_NEEDED 1 /* String table offset of a needed shared macro
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/ |
| H A D | elf_common.h | 378 #define DT_NEEDED 1 /* String table offset of a needed shared macro
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/ |
| H A D | elf_common.h | 378 #define DT_NEEDED 1 /* String table offset of a needed shared macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/ |
| H A D | elf.h | 851 #define DT_NEEDED 1 /* Name of needed library */ macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | elf.h | 851 #define DT_NEEDED 1 /* Name of needed library */ macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/ |
| H A D | ld.info | 1186 This option affects ELF DT_NEEDED tags for dynamic libraries 1188 Normally the linker will add a DT_NEEDED tag for each dynamic 1191 DT_NEEDED tag to only be emitted for a library that _at that point 1194 DT_NEEDED lists of other needed libraries, a non-weak undefined 1294 by DT_NEEDED tags _inside_ ELF dynamic libraries mentioned on the 1295 command line. Normally the linker won't add a DT_NEEDED tag to the 1296 output binary for each library mentioned in a DT_NEEDED tag in an 1299 will have their DT_NEEDED entries added. The default behaviour can 1305 searched, following their DT_NEEDED tags to other libraries, in 1308 follow it will stop with the dynamic library itself. No DT_NEEDED
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/ |
| H A D | ld.info | 1186 This option affects ELF DT_NEEDED tags for dynamic libraries 1188 Normally the linker will add a DT_NEEDED tag for each dynamic 1191 DT_NEEDED tag to only be emitted for a library that _at that point 1194 DT_NEEDED lists of other needed libraries, a non-weak undefined 1294 by DT_NEEDED tags _inside_ ELF dynamic libraries mentioned on the 1295 command line. Normally the linker won't add a DT_NEEDED tag to the 1296 output binary for each library mentioned in a DT_NEEDED tag in an 1299 will have their DT_NEEDED entries added. The default behaviour can 1305 searched, following their DT_NEEDED tags to other libraries, in 1308 follow it will stop with the dynamic library itself. No DT_NEEDED
|