/toolchain/binutils/binutils-2.25/opcodes/ |
D | cgen-opc.c | 154 CGEN_KEYWORD_SEARCH search; in cgen_keyword_search_init() local 163 search.table = kt; in cgen_keyword_search_init() 164 search.spec = spec; in cgen_keyword_search_init() 165 search.current_hash = 0; in cgen_keyword_search_init() 166 search.current_entry = NULL; in cgen_keyword_search_init() 167 return search; in cgen_keyword_search_init() 174 cgen_keyword_search_next (CGEN_KEYWORD_SEARCH *search) in cgen_keyword_search_next() argument 177 if (search->current_hash == search->table->hash_table_size) in cgen_keyword_search_next() 181 if (search->current_entry != NULL in cgen_keyword_search_next() 183 && search->current_entry->next_name != NULL) in cgen_keyword_search_next() [all …]
|
/toolchain/binutils/binutils-2.25/ld/emultempl/ |
D | sunos.em | 93 linker, we add the directories in LD_LIBRARY_PATH to the search 133 /* Despite the name, we use this routine to search for dynamic 134 libraries. On SunOS this requires a directory search. We need to 140 search it after including the .so file. */ 148 /* Search the directory for a .so file for each library search. */ 153 search_dirs_type *search; 165 for (search = search_head; search != NULL; search = search->next) 169 found = gld${EMULATION_NAME}_search_dir (search->name, inp->filename, 179 found by the usual search. */ 184 alc = (char *) xmalloc (strlen (search->name) + strlen (found) + 2); [all …]
|
D | aix.em | 775 search_dirs_type *search; 792 for (search = search_head->next; search != NULL; search = search->next) 796 name = search->name; 813 for (search = search_head->next; search != NULL; search = search->next) 817 nlen = strlen (search->name); 820 strcpy (libpath + len + 1, search->name); 1504 search_dirs_type *search, 1513 path = concat (search->name, "/", entry->filename, 1516 path = concat (search->name, "/lib", entry->filename, arch, ".a", 1526 path + strlen (search->name) + 1);
|
D | linux.em | 60 (const char *arch, search_dirs_type *search, lang_input_statement_type *entry) 67 string = (char *) xmalloc (strlen (search->name) 72 sprintf (string, "%s/lib%s%s.sa", search->name, entry->filename, arch);
|
D | vms.em | 55 search_dirs_type *search, 63 string = (char *) xmalloc (strlen (search->name) 67 sprintf (string, "%s/%s.exe", search->name, entry->filename);
|
D | elf32.em | 365 another file on the search path. */ 564 /* Read the system search path the FreeBSD way rather than the Linux way. */ 714 can search forward for the next '#' character and if found 1144 take priority over libs found in search dirs. */ 1153 want to search for the file in the same way that the dynamic 1154 linker will search. That means that we want to use 1158 We do not search using the -L arguments. 1160 We search twice. The first time, we skip objects which may 1166 search_dirs_type *search; 1247 for (search = search_head; search != NULL; search = search->next) [all …]
|
D | spuelf.em | 494 lang_input_statement_type *search; 515 for (search = (lang_input_statement_type *) input_file_chain.head; 516 search != NULL; 517 search = (lang_input_statement_type *) search->next_real_file) 518 if (search->filename != NULL) 520 const char *infile = base_name (search->filename);
|
D | lnk960.em | 102 add_on (lib_list_type *list, lang_input_file_enum_type search) 106 lang_add_input_file (list->name, search, (char *) NULL);
|
D | mmix-elfnmmo.em | 87 search for other errors), because it's a link error in the same way
|
D | pep.em | 307 {"dll-search-prefix", required_argument, NULL, OPTION_DLL_SEARCH_PREFIX}, 438 …fprintf (file, _(" --dll-search-prefix=<string> When linking dynamically to a dll without\n\ 2062 search_dirs_type *search, 2078 libfoo.dll and foo.dll in the search. */ 2120 full_string = xmalloc (strlen (search->name) 2129 search->name and the start of the format string. */ 2132 sprintf (full_string, "%s/", search->name);
|
/toolchain/binutils/binutils-2.25/ld/ |
D | ldfile.c | 356 search_dirs_type *search; in ldfile_open_file_search() local 380 for (search = search_head; search != NULL; search = search->next) in ldfile_open_file_search() 386 if (ldemul_open_dynamic_archive (arch, search, entry)) in ldfile_open_file_search() 391 string = concat (search->name, slash, lib, entry->filename, in ldfile_open_file_search() 394 string = concat (search->name, slash, entry->filename, in ldfile_open_file_search() 562 search_dirs_type *search; in ldfile_find_command_file() local 592 for (search = default_only ? script_search : search_head; in ldfile_find_command_file() 593 search != NULL; in ldfile_find_command_file() 594 search = search->next) in ldfile_find_command_file() 596 path = concat (search->name, slash, name, (const char *) NULL); in ldfile_find_command_file()
|
D | ldemul.c | 112 ldemul_open_dynamic_archive (const char *arch, search_dirs_type *search, in ldemul_open_dynamic_archive() argument 116 return (*ld_emulation->open_dynamic_archive) (arch, search, entry); in ldemul_open_dynamic_archive()
|
D | README | 30 a different search path of -lfoo libraries than the default.
|
D | ld.texinfo | 276 the library @code{libc.a}, which will come from the standard search 390 archive-library search path. @xref{i960,,@command{ld} and the Intel 960 663 will search the library path for a file called @var{filename}, otherwise it 664 will search the library path for a file called @file{lib@var{namespec}.a}. 666 On systems which support shared libraries, @command{ld} may also search for 668 and SunOS systems, @command{ld} will search a directory for a library 675 The linker will search an archive only once, at the location where it is 680 the command line will not cause the linker to search the archive again. 682 See the @option{-(} option for a way to force the linker to search 693 @cindex search directory, from cmd line [all …]
|
D | ldlang.c | 2631 lang_input_statement_type *search; in lookup_name() local 2633 for (search = (lang_input_statement_type *) input_file_chain.head; in lookup_name() 2634 search != NULL; in lookup_name() 2635 search = (lang_input_statement_type *) search->next_real_file) in lookup_name() 2640 const char *filename = search->local_sym_name; in lookup_name() 2647 if (search == NULL) in lookup_name() 2648 search = new_afile (name, lang_input_file_is_search_file_enum, in lookup_name() 2653 if (search->flags.loaded || !search->flags.real) in lookup_name() 2654 return search; in lookup_name() 2656 if (! load_symbols (search, NULL)) in lookup_name() [all …]
|
/toolchain/binutils/binutils-2.25/intl/ |
D | dcigettext.c | 448 struct known_translation_t *search; variable 486 search = (struct known_translation_t *) 488 memcpy (search->msgid, msgid1, msgid_len); 489 search->domainname = (char *) domainname; 490 search->category = category; 492 foundp = (struct known_translation_t **) tfind (search, &root, transcmp); 493 freea (search);
|
/toolchain/binutils/binutils-2.25/libiberty/ |
D | pex-win32.c | 444 find_executable (const char *program, BOOL search) in find_executable() argument 457 search = FALSE; in find_executable() 459 if (search) in find_executable() 569 BOOL search, in win32_spawn() argument 619 full_executable = find_executable (executable, search); in win32_spawn()
|
/toolchain/binutils/binutils-2.25/config/ |
D | lib-prefix.m4 | 37 [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib 38 --without-lib-prefix don't search for libraries in includedir and libdir],
|
D | gettext.m4 | 80 dnl Sometimes libintl requires libiconv, so first search for libiconv. 81 dnl Ideally we would do this search only after the 146 dnl Sometimes libintl requires libiconv, so first search for libiconv.
|
D | lib-ld.m4 | 72 # If it is relative, then search for the first ld in PATH.
|
D | lib-link.m4 | 35 dnl results of this search when this library appears as a dependency. 136 [ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib 137 --without-lib$1-prefix don't search for lib$1 in includedir and libdir],
|
/toolchain/binutils/binutils-2.25/gold/po/ |
D | id.po | 971 msgid "-l does not search for shared libraries" 1119 msgid "Add directory to search path" 1219 msgid "Add DIR to runtime search path" 1223 msgid "Add DIR to link time shared library search path" 1339 msgid "Default search path for Solaris compatibility" 1347 msgid "Start a library search group" 1351 msgid "End a library search group" 1395 msgid "Mark object not to use default search paths"
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ |
D | template | 29 # Call gas_start with two arguments: The input file name (which it'll search
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/ |
D | vector.s | 128 (R0, R1) = search R2 (lt);
|
/toolchain/binutils/binutils-2.25/ld/po/ |
D | zh_CN.po | 195 " --dll-search-prefix=<string> When linking dynamically to a dll without\n" 199 " --dll-search-prefix=<字符串> 动态链接至 DLL 而缺少导入库时,使用\n" 1275 msgid "Add DIRECTORY to library search path" 1402 msgid "Default search path for Solaris compatibility" 1605 msgid "Set runtime shared library search path" 1609 msgid "Set link time shared library search path"
|