Bug#94894: misspelled option name -fstd should be -std

2001-04-22 Thread Chris Waters
Package: gcc-2.95-doc Version: 1:2.95.4-0.010407 Severity: minor A typo I guess? In the node reached by 'info gcc "Invoking GCC" "C Dialect Options"', the -fstd option is listed. The compiler seems to think that this is spelled -std -- at least, -fstd=c9x produces an error, while -std=c9x seems

Bug#94891: %zd printf spec generates warning, even in c9x mode

2001-04-22 Thread Chris Waters
Package: gcc-2.95 Version: 1:2.95.4-0.010407 Severity: minor The following transcript should illustrate the error: ~ $ cat sample.c #include int main() { size_t f=0; printf("%zd\n",f); return 0; } ~ $ ~ $ gcc-2.95 -O2 -g -Wall -std=c9x sample.c sample.c: In function `main': sample.c:3: warning