Changeset 573
- Timestamp:
- Aug 11, 2003, 12:02:25 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxomf/emxomf.c
-
Property cvs2svn:cvs-rev
changed from
1.21
to1.22
r572 r573 390 390 /* The name of the identifier manipulation DLL. If this variable is 391 391 NULL, no IDMDLL record is written. */ 392 static char *idmdll_name = " GPP3DEM";392 static char *idmdll_name = "INNIDM"; 393 393 394 394 /* If this variable is TRUE (-b option), we always use the 32-bit … … 625 625 FILE *wf; 626 626 627 if (opt_w)628 return;629 627 630 628 /* Find and open the weak symbol list file … … 632 630 weak_list_filename = getenv ("GCC_WEAKSYMS"); 633 631 if (!weak_list_filename) 634 return ; 632 return ; 633 if (opt_w) 634 return; 635 635 wf = fopen (weak_list_filename, "r"); 636 636 if (!wf) … … 1343 1343 1344 1344 if ( out_lib != NULL 1345 && ( ( (sym_ptr[i].n_type & N_EXT) 1345 && ( ( (sym_ptr[i].n_type & N_EXT) 1346 1346 && sym_ptr[i].n_type != N_WEAKB 1347 1347 && sym_ptr[i].n_type != N_WEAKU) 1348 || sym_ptr[i].n_type == N_WEAKT 1348 || sym_ptr[i].n_type == N_WEAKT 1349 1349 || sym_ptr[i].n_type == N_WEAKD ) ) 1350 1350 { … … 2804 2804 init_rec (COMENT); 2805 2805 put_8 (0x00); 2806 put_8 ( 0xaf);2806 put_8 (CLASS_IDMDLL); 2807 2807 put_str (idmdll_name); 2808 2808 put_str (""); /* Initialization parameter */ … … 3493 3493 puts (" -t Add timestamping to the weak symbol mangling"); 3494 3494 puts (" -w Suppress reading/writing of the weaksyms.omf file"); 3495 puts (" (Only used if GCC_WEAKSYMS is set.)"); 3495 3496 puts (" -z Remove underscores from all symbol names"); 3496 3497 exit (1); … … 3900 3901 /* Parse the command line options. */ 3901 3902 3902 while ((c = getopt (argc, argv, "bdD:gh:i:I:m:l::o:p:qO:r:R: suxwz")) != EOF)3903 while ((c = getopt (argc, argv, "bdD:gh:i:I:m:l::o:p:qO:r:R:tsuxwz")) != EOF) 3903 3904 switch (c) 3904 3905 { -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.