Changes between Initial Version and Version 1 of Ticket #212


Ignore:
Timestamp:
Nov 23, 2010, 11:06:37 AM (13 years ago)
Author:
bird
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #212

    • Property Status changed from new to assigned
  • Ticket #212 – Description

    initial v1  
    11386/stdarg.h needs modifications to work with GCC 4.4.0 as __builtin_stdarg_start does not exist anymore.
    2 
     2{{{
    33Suggested patch is:
    44--- \stdarg.h   2007-06-10 16:44:46.000000000 +0845
     
    1818 #define        va_arg(ap, type) \
    1919        __builtin_va_arg((ap), type)
    20 
     20}}}
    2121This has been tested with GCC 3.3 and 4.4 as OK