From 5140bc2021f825382566b8b825ad8bd5d1fdfd40 Mon Sep 17 00:00:00 2001 From: pierre Date: Wed, 12 Sep 2012 13:43:41 +0000 Subject: [PATCH] extcycle produces lots of warnings, thus add ALLOW_WARNINGS=1 git-svn-id: trunk@22374 - --- compiler/Makefile.fpc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/Makefile.fpc b/compiler/Makefile.fpc index 1def94aca4..84a6fc0eb5 100644 --- a/compiler/Makefile.fpc +++ b/compiler/Makefile.fpc @@ -697,8 +697,10 @@ endif cycledep: $(MAKE) cycle USEDEPEND=1 +# extcycle should still work, but generates +# lots of warnings, so ALLOW_WARNINGS=1 is required extcycle: - $(MAKE) cycle OPT="$(OPT) -n -OG2p3 -glttt -CRriot -dEXTDEBUG" + $(MAKE) cycle OPT="$(OPT) -n -OG2p3 -glttt -CRriot -dEXTDEBUG" ALLOW_WARNINGS=1 cvstest: $(MAKE) cycle 'LOCALOPT=-n -Se' 'RTLOPT=-n -Se'