Lines Matching defs:export

32    A DLL contains an export table which contains the information
36 The export table is generated by this program by reading
39 with export information.
81 A -export:<name> in a .drectve section in an input .o or .a
91 The .exp.s file contains the information necessary to export
101 asm (".ascii \"-export:adef\"");
115 asm (".ascii \"-export:cdef\"");
116 asm (".ascii \"-export:ddef\"");
167 # Build the dll with the library and the export table
195 # Build the dll with file1.o, file2.o and the export table
364 /* TRUE if we should export all symbols. Otherwise, we only export
671 typedef struct export
683 struct export *next;
687 /* A list of symbols which we should not export. */
932 struct export *p = (struct export *) xmalloc (sizeof (*p));
1237 /* Look for a list of symbols to export in the .drectve section of
1264 /* Search for -export: strings. The exported symbols can optionally
1265 have type tags (eg., -export:foo,data), so handle those as well.
1272 && CONST_STRNEQ (p, "-export:"))
1316 symbols to export. */
1413 /* Choose which symbols to export. */
1457 export. */
1490 /* Discard the symbols we don't want to export. It's OK to do this
1499 /* Look at the object file to decide which symbols to export. */
1813 inform (_("Generating export file: %s"), exp_name);
3139 fprintf (file, _(" -e --output-exp <outname> Generate an export file.\n"));
3141 fprintf (file, _(" -a --add-indirect Add dll indirects to export file.\n"));
3145 fprintf (file, _(" --export-all-symbols Export all symbols to .def\n"));
3146 fprintf (file, _(" --no-export-all-symbols Only export listed symbols\n"));
3147 fprintf (file, _(" --exclude-symbols <list> Don't export <list>\n"));
3190 {"export-all-symbols", no_argument, NULL, OPTION_EXPORT_ALL_SYMS},
3191 {"no-export-all-symbols", no_argument, NULL, OPTION_NO_EXPORT_ALL_SYMS},