Changes between Initial Version and Version 1 of Ticket #212
- Timestamp:
- Nov 23, 2010, 12:06:37 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #212
- Property Status new → assigned
-
Ticket #212 – Description
initial v1 1 1 386/stdarg.h needs modifications to work with GCC 4.4.0 as __builtin_stdarg_start does not exist anymore. 2 2 {{{ 3 3 Suggested patch is: 4 4 --- \stdarg.h 2007-06-10 16:44:46.000000000 +0845 … … 18 18 #define va_arg(ap, type) \ 19 19 __builtin_va_arg((ap), type) 20 20 }}} 21 21 This has been tested with GCC 3.3 and 4.4 as OK