Ignore:
Timestamp:
Mar 19, 2006, 6:21:22 AM (19 years ago)
Author:
bird
Message:
  • *:

o Synced over changed from 0.6.1 bugfixing.

  • emxbind:

o #38: Fixed truncation bug writing to the LX nametable. (Yuri)
o #38: Imports and exports are limited to 255 not 127 chars. (Yuri)
o #28: Use DLL name from the .def file when present.

  • emxomf:

o #70: Demangle symbol names in debug info. (thanks to Yuri)

  • emxomfld:

o #55: delete the response file when reinit the args.
o #46: specify .map file extension to the linker.
o #34: Removed all the silliness trying to deal with truncated symbols.
o Don't display usage() on failure, just the error message.
o #20: use mkstemp + close instead of mktemp for the response file.

  • ld:

o #20: use make_temp_file instead of mktemp. This involved including

libiberty.h which required some adjustments of duplicate code to work.

o #27: Applied fix from Yuri.

  • libmoddef:

o Allow '.' and '@' in LIBRARY/NAME names.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/emx/src/emxbind/utils.c

    r18 r2673  
    4949  exit (2);
    5050}
     51
     52
     53/* Print an warning message. This function is called like  printf().
     54   The message will be prefixed with  "emxbind: warning: " and a
     55   newline will be added at the end. */
     56
     57void warning (const char *fmt, ...)
     58{
     59  va_list arg_ptr;
     60
     61  va_start (arg_ptr, fmt);
     62  fprintf (stderr, "emxbind: warning: ");
     63  vfprintf (stderr, fmt, arg_ptr);
     64  fputc ('\n', stderr);
     65}
     66
    5167
    5268/* Print an out of memory message and abort. */
Note: See TracChangeset for help on using the changeset viewer.