Joel E. Denny wrote: > Using the same compiler options as for building Bison: > > --------------------------- > % gcc -std=gnu99 -I. -I. -I../lib -I../lib \ > -Wall -Wextra -Wno-sign-compare -Wcast-align -Wcast-qual -Wformat \ > -Wpointer-arith -Wwrite-strings -Wbad-function-cast -Wmissing-declarations \ > -Wmissing-prototypes -Wshadow -Wstrict-prototypes -Werror -E tmp.c \
gnulib does not support -Werror in general. Using -Werror may work on some particular platforms, under some particular circumstances. But it general it is not an achievable to goal to avoid _all_ warnings in _all_ circumstances. Especially if you are asking for tons more warnings, as you do above. Can you report a gnulib malfunction when -Werror is not used? Bruno