Changeset 1258


Ignore:
Timestamp:
Feb 16, 2004, 6:38:16 PM (21 years ago)
Author:
bird
Message:

Changed weak timestamp default adding option -j.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/emxomf/emxomf.c

    • Property cvs2svn:cvs-rev changed from 1.36 to 1.37
    r1257 r1258  
    264264
    265265/* Add timestamp to symbol to make it more unique. */
    266 static int opt_weakts = FALSE;
     266static int opt_weakts = TRUE;
    267267
    268268/* This is the page size for OMF libraries.  It is set by the -p
     
    36913691  puts ("  -I <idmdll>        Name the identifier manipulation DLL");
    36923692  puts ("  -O <directory>     Extract files to <directory>");
    3693   puts ("  -t                 Add timestamping to the weak symbol mangling");
     3693  puts ("  -t                 Add timestamping to the weak symbol mangling (def)");
     3694  puts ("  -j                 Do not add timestamping to the weak symbol mangling");
    36943695  puts ("  -w                 Suppress reading/writing of the weaksyms.omf file");
    36953696  puts ("                     (Only used if GCC_WEAKSYMS is set.)");
     
    41114112  /* Parse the command line options. */
    41124113
    4113   while ((c = getopt (argc, argv, "bdD:gh:i:I:m:l::o:P:p:qO:r:R:tsuxwz")) != EOF)
     4114  while ((c = getopt (argc, argv, "bdD:gh:i:jI:m:l::o:P:p:qO:r:R:tsuxwz")) != EOF)
    41144115    switch (c)
    41154116      {
     
    41404141        *libreq_add = lrp;
    41414142        libreq_add = &lrp->next;
     4143        break;
     4144      case 'j':
     4145        opt_weakts = FALSE;
    41424146        break;
    41434147      case 'I':
Note: See TracChangeset for help on using the changeset viewer.