From: Martin Str|mberg Message-Id: <200107290000.CAA29052@father.ludd.luth.se> Subject: signed/unsigned To: djgpp-workers AT delorie DOT com (DJGPP-WORKERS) Date: Sun, 29 Jul 2001 02:00:47 +0200 (MET DST) X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com All that's left is how to solve the warnings from libm, then we can apply this patch: Index: src/gcc-l.opt =================================================================== RCS file: /cvs/djgpp/djgpp/src/gcc-l.opt,v retrieving revision 1.2 diff -p -u -r1.2 gcc-l.opt --- src/gcc-l.opt 2001/06/11 15:13:37 1.2 +++ src/gcc-l.opt 2001/07/28 23:54:20 @@ -2,6 +2,8 @@ -O2 -mcpu=pentium -march=i386 --fno-strength-reduce -Wall +-Wundef +-Wcast-align +-Wsign-compare -nostdinc Index: src/gcc.opt =================================================================== RCS file: /cvs/djgpp/djgpp/src/gcc.opt,v retrieving revision 1.3 diff -p -u -r1.3 gcc.opt --- src/gcc.opt 2001/06/11 15:07:13 1.3 +++ src/gcc.opt 2001/07/28 23:54:20 @@ -1,6 +1,5 @@ -MD -O2 --fno-strength-reduce -mcpu=pentium -march=i386 -Wall @@ -13,5 +12,8 @@ -Wshadow -Wstrict-prototypes -Wwrite-strings +-Wundef +-Wcast-align +-Wsign-compare -nostdinc So, please anyone that understands what going on in libm, take a look at it. Right, MartinS