Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 245)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#318 wontfix -static problem KO Myung-Hun
Description

Hi/2.

If it is specified without -o option, ld fails due to -static-o.

F:\lang\work\test>gcc -static test.c
ld.exe: unrecognized option `-static-o'

If it is specified with -o option, ld fails due to undefined symbols.

F:\lang\work\test>gcc -static -o test.exe test.c
F:/lang/gcc/usr/lib/libc_s.a(signals.o): Undefined symbol ___libc_back_signalOS2
V1Handler16bit referenced from text segment
F:/lang/gcc/usr/lib/libc_s.a(signals.o): Undefined symbol ___libc_back_signalOS2
V1Handler16bit referenced from text segment
#286 invalid /@unixroot path rewrite inconsistencies dmik
Description

There are a several inconsistencies in the functionality of the built-in path rewrite rule that is used to support Unix-like file system structure (to simplify porting of Unix software to OS/2) by replacing /@unixroot with the value of the UNIXROOTenvironment variable.

This is a meta-ticket to put all separate tickets related about inconsistency together.

#212 fixed 386/stdarg.h does not work with GCC 4.4.0 bird psmedley
Description

386/stdarg.h needs modifications to work with GCC 4.4.0 as builtin_stdarg_start does not exist anymore.

Suggested patch is:
--- \stdarg.h	2007-06-10 16:44:46.000000000 +0845
+++ stdarg.h	2009-04-16 13:15:38.000000000 +0845
@@ -54,8 +54,13 @@
 
 #if defined(__GNUC__) && (__GNUC__ == 2 && __GNUC_MINOR__ > 95 || __GNUC__ >= 3)
 
+#if defined(__GNUC__) && (__GNUC__ == 4 && __GNUC_MINOR__ >= 4 )
+#define	va_start(ap, last) \
+	__builtin_va_start((ap), (last))
+#else
 #define	va_start(ap, last) \
 	__builtin_stdarg_start((ap), (last))
+#endif
 
 #define	va_arg(ap, type) \
 	__builtin_va_arg((ap), type)

This has been tested with GCC 3.3 and 4.4 as OK

1 2 3 4 5 6 7 8 9 10 11
Note: See TracQuery for help on using queries.