Home | History | Annotate | Download | only in binutils

Lines Matching refs:libdeps

144 #define LIBDEPS	"__.LIBDEP"
146 static char * libdeps = NULL;
177 {"record-libdeps", required_argument, NULL, 'l'},
347 fprintf (s, _(" --record-libdeps=<text> - specify the dependencies of this library\n"));
547 if (libdeps != NULL)
548 fatal (_("libdeps specified more than once"));
549 libdeps = optarg;
865 if (libdeps != NULL)
868 bfd_size_type reclen = strlen (libdeps) + 1;
875 libdeps_bfd = bfd_create (LIBDEPS, arch);
877 fatal (_("Cannot create libdeps record."));
880 fatal (_("Cannot set libdeps record type to binary."));
883 fatal (_("Cannot set libdeps object format."));
886 fatal (_("Cannot make libdeps object writable."));
888 if (bfd_write (libdeps, reclen, libdeps_bfd) != reclen)
889 fatal (_("Cannot write libdeps record."));
892 fatal (_("Cannot make libdeps object readable."));
895 fatal (_("Cannot reset libdeps record type."));
897 /* Insert our libdeps record in 2nd slot of the list of files
907 new_files[file_count != 0] = LIBDEPS;
1565 LIBDEPS) == 0)
1592 && FILENAME_CMP (normalize (*files_to_move, arch), LIBDEPS) == 0)