mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
pstate_clear is lacking a prototype. Reported by Ryan https://lists.gnu.org/r/bug-bison/2020-05/msg00101.html Besides, none of the C examples were compiled with the warning flags. * configure.ac (warn_c): Add -Wmissing-prototypes. * data/skeletons/yacc.c (pstate_clear): Make it static. * examples/local.mk (TEST_CFLAGS): New. * examples/c/bistromathic/local.mk, examples/c/calc/local.mk, * examples/c/lexcalc/local.mk, examples/c/mfcalc/local.mk, * examples/c/pushcalc/local.mk, examples/c/reccalc/local.mk, * examples/c/rpcalc/local.mk: Use it. GCC's warn_unused_result is not silenced by a cast to void, so we have to "use" scanf's result. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66425 Flex generated code produces too many warnings, including things such as, with ICC: examples/c/lexcalc/scan.c(1088): error #1682: implicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem) 2259 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), 2260 ^ 2261 2262 I am tired of trying to fix Flex's output. The project does not seem maintained. We ought to avoid it. So, for the time being, don't try to enable warnings with Flex. * examples/c/bistromathic/parse.y, examples/c/reccalc/scan.l: Fix warnings. * doc/bison.texi: Discard scanf's return value to defeat -Werror=unused-result.
84 lines
3.1 KiB
Makefile
84 lines
3.1 KiB
Makefile
## Copyright (C) 2019-2020 Free Software Foundation, Inc.
|
|
##
|
|
## This program is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation, either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
reccalcdir = $(docdir)/%D%
|
|
|
|
## --------- ##
|
|
## RecCalc. ##
|
|
## --------- ##
|
|
|
|
if FLEX_WORKS
|
|
check_PROGRAMS += %D%/reccalc
|
|
TESTS += %D%/reccalc.test
|
|
nodist_%C%_reccalc_SOURCES = %D%/parse.y %D%/scan.h %D%/scan.c
|
|
BUILT_SOURCES += $(nodist_%C%_reccalc_SOURCES)
|
|
# Don't use gnulib's system headers.
|
|
%C%_reccalc_CPPFLAGS = -I$(top_srcdir)/%D% -I$(top_builddir)/%D%
|
|
# Fighting warnings triggered by Flex is just too painful.
|
|
# %C%_reccalc_CFLAGS = $(TEST_CFLAGS)
|
|
endif FLEX_WORKS
|
|
|
|
%D%/parse.c: $(dependencies)
|
|
|
|
# Tell Make that parse.o depends on scan.h, so that scan.h is built
|
|
# before parse.o. Obfuscate the name of the target, otherwise
|
|
# Automake removes its recipe for parse.o and leaves only our
|
|
# additional dependency.
|
|
DASH = -
|
|
%D%/reccalc$(DASH)parse.o: %D%/scan.h
|
|
# Tell Make scan.o depends on parse.h, except that Make sees only
|
|
# parse.c, not parse.h. We can't use BUILT_SOURCES to this end, since
|
|
# we use the built bison.
|
|
%D%/reccalc$(DASH)scan.o: %D%/parse.c
|
|
|
|
# Likewise, but for Automake before 1.16.
|
|
%D%/examples_c_reccalc_reccalc$(DASH)parse.o: %D%/scan.h
|
|
%D%/examples_c_reccalc_reccalc$(DASH)scan.o: %D%/parse.c
|
|
|
|
## See "info automake 'Multiple Outputs'" for this rule.
|
|
%D%/scan.c %D%/scan.h: %D%/scan.stamp
|
|
## Recover from the removal of $@
|
|
@if test -f $@; then :; else \
|
|
trap 'rm -rf %D%/scan.lock %D%/scan.stamp' 1 2 13 15; \
|
|
## mkdir is a portable test-and-set
|
|
if mkdir %D%/scan.lock 2>/dev/null; then \
|
|
## This code is being executed by the first process.
|
|
rm -f %D%/scan.stamp; \
|
|
$(MAKE) $(AM_MAKEFLAGS) %D%/scan.stamp; \
|
|
result=$$?; rm -rf %D%/scan.lock; exit $$result; \
|
|
else \
|
|
## This code is being executed by the follower processes.
|
|
## Wait until the first process is done.
|
|
while test -d %D%/scan.lock; do sleep 1; done; \
|
|
## Succeed if and only if the first process succeeded.
|
|
test -f %D%/scan.stamp; \
|
|
fi; \
|
|
fi
|
|
|
|
%D%/scan.stamp: %D%/scan.l
|
|
$(AM_V_LEX)rm -f $@ $@.tmp
|
|
$(AM_V_at)$(MKDIR_P) %D%
|
|
$(AM_V_at)touch $@.tmp
|
|
## --header introduced in 2.5.6, renamed as --header-file in 2.6.4.
|
|
## Backward compatibility ensured since --header is an unambiguous prefix.
|
|
$(AM_V_at)$(LEX) $(AM_LFLAGS) $(LFLAGS) -o%D%/scan.c --header=%D%/scan.h $(srcdir)/%D%/scan.l
|
|
$(AM_V_at)mv $@.tmp $@
|
|
|
|
|
|
EXTRA_DIST += %D%/reccalc.test %D%/scan.l
|
|
dist_reccalc_DATA = %D%/parse.y %D%/scan.l %D%/Makefile %D%/README.md
|
|
CLEANFILES += %D%/parse.[ch] %D%/parse.output %D%/scan.[ch] %D%/*.stamp
|
|
CLEANDIRS += %D%/*.dSYM
|