On Tue, 2019-08-27 at 13:37 -0400, Dennis Clarke wrote: > "src/arscan.c", line 43: warning: tokens ignored at end of directive > line
This was addressed by Paul's patch "Pacify Oracle Studio 12.6" > "src/dep.h", line 55: warning: nonportable bit-field type > "src/dep.h", line 64: warning: nonportable bit-field type > "src/function.c", line 41: warning: nonportable bit-field type > "src/function.c", line 42: warning: nonportable bit-field type These happen on Windows, too: it's because we're using a short as a bitfield while some compilers allow only "int" and "unsigned int". Others allow any integral type. > "src/main.c", line 1054: warning: only 0 or 2 parameters allowed: > main() Hm. Maybe I can use gnulib's environ module instead. We'll see if that works on Windows. > "src/read.c", line 1405: warning: statement not reached I think this is Paul's "Remove useless code in eval" patch. _______________________________________________ Bug-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-make
