mirror of git://gcc.gnu.org/git/gcc.git
Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
* Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata. * Makefile.in: Regenerate. gcc/ * configure.ac (Tree checking): Set TREECHECKING to yes if enabled. Substitute TREECHECKING. * configure: Regenerate. * Makefile.in (TREECHECKING): New. gcc/ada/ * gcc-interface/Make-lang.in (COMMON_ADAFLAGS): Remove -gnata. (CHECKING_ADAFLAGS): New. (ALL_ADAFLAGS): Include CHECKING_ADAFLAGS. From-SVN: r195104
This commit is contained in:
parent
c7ab25306d
commit
7cb9fd07fe
|
|
@ -1,3 +1,8 @@
|
||||||
|
2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
|
* Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
2013-01-10 Joern Rennecke <joern.rennecke@embecosm.com>
|
2013-01-10 Joern Rennecke <joern.rennecke@embecosm.com>
|
||||||
|
|
||||||
* MAINTAINERS (arc): Add new port maintainership for myself.
|
* MAINTAINERS (arc): Add new port maintainership for myself.
|
||||||
|
|
|
||||||
|
|
@ -364,7 +364,7 @@ BUILD_PREFIX_1 = @BUILD_PREFIX_1@
|
||||||
# here so that they can be overridden by Makefile fragments.
|
# here so that they can be overridden by Makefile fragments.
|
||||||
BOOT_CFLAGS= -g -O2
|
BOOT_CFLAGS= -g -O2
|
||||||
BOOT_LDFLAGS=
|
BOOT_LDFLAGS=
|
||||||
BOOT_ADAFLAGS=-gnatpg -gnata
|
BOOT_ADAFLAGS= -gnatpg
|
||||||
|
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
SED = @SED@
|
SED = @SED@
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ BUILD_PREFIX_1 = @BUILD_PREFIX_1@
|
||||||
# here so that they can be overridden by Makefile fragments.
|
# here so that they can be overridden by Makefile fragments.
|
||||||
BOOT_CFLAGS= -g -O2
|
BOOT_CFLAGS= -g -O2
|
||||||
BOOT_LDFLAGS=
|
BOOT_LDFLAGS=
|
||||||
BOOT_ADAFLAGS=-gnatpg -gnata
|
BOOT_ADAFLAGS= -gnatpg
|
||||||
|
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
SED = @SED@
|
SED = @SED@
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
|
* configure.ac (Tree checking): Set TREECHECKING to yes if enabled.
|
||||||
|
Substitute TREECHECKING.
|
||||||
|
* configure: Regenerate.
|
||||||
|
* Makefile.in (TREECHECKING): New.
|
||||||
|
|
||||||
2012-01-11 Richard Guenther <rguenther@suse.de>
|
2012-01-11 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
PR tree-optimization/44061
|
PR tree-optimization/44061
|
||||||
|
|
|
||||||
|
|
@ -1487,6 +1487,10 @@ ALL_HOST_OBJS = $(ALL_HOST_FRONTEND_OBJS) $(ALL_HOST_BACKEND_OBJS)
|
||||||
BACKEND = libbackend.a main.o @TREEBROWSER@ libcommon-target.a libcommon.a \
|
BACKEND = libbackend.a main.o @TREEBROWSER@ libcommon-target.a libcommon.a \
|
||||||
$(CPPLIB) $(LIBDECNUMBER)
|
$(CPPLIB) $(LIBDECNUMBER)
|
||||||
|
|
||||||
|
# This is defined to "yes" if Tree checking is enabled, which roughly means
|
||||||
|
# front-end checking.
|
||||||
|
TREECHECKING = @TREECHECKING@
|
||||||
|
|
||||||
MOSTLYCLEANFILES = insn-flags.h insn-config.h insn-codes.h \
|
MOSTLYCLEANFILES = insn-flags.h insn-config.h insn-codes.h \
|
||||||
insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
|
insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
|
||||||
insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \
|
insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
|
* gcc-interface/Make-lang.in (COMMON_ADAFLAGS): Remove -gnata.
|
||||||
|
(CHECKING_ADAFLAGS): New.
|
||||||
|
(ALL_ADAFLAGS): Include CHECKING_ADAFLAGS.
|
||||||
|
|
||||||
2013-01-10 Eric Botcazou <ebotcazou@adacore.com>
|
2013-01-10 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
* gcc-interface/config-lang.in (boot_language_boot_flags): Delete.
|
* gcc-interface/config-lang.in (boot_language_boot_flags): Delete.
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,12 @@ RMDIR = rm -rf
|
||||||
|
|
||||||
|
|
||||||
# Extra flags to pass to recursive makes.
|
# Extra flags to pass to recursive makes.
|
||||||
COMMON_ADAFLAGS= -gnatpg -gnata
|
COMMON_ADAFLAGS= -gnatpg
|
||||||
|
ifeq ($(TREECHECKING),)
|
||||||
|
CHECKING_ADAFLAGS=
|
||||||
|
else
|
||||||
|
CHECKING_ADAFLAGS= -gnata
|
||||||
|
endif
|
||||||
WARN_ADAFLAGS= -W -Wall
|
WARN_ADAFLAGS= -W -Wall
|
||||||
|
|
||||||
# For native builds, the base compiler might be old and we need to arrange for
|
# For native builds, the base compiler might be old and we need to arrange for
|
||||||
|
|
@ -59,7 +64,8 @@ else
|
||||||
ADAFLAGS= $(COMMON_ADAFLAGS)
|
ADAFLAGS= $(COMMON_ADAFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ALL_ADAFLAGS = $(CFLAGS) $(ADA_CFLAGS) $(ADAFLAGS) $(WARN_ADAFLAGS)
|
ALL_ADAFLAGS = \
|
||||||
|
$(CFLAGS) $(ADA_CFLAGS) $(ADAFLAGS) $(CHECKING_ADAFLAGS) $(WARN_ADAFLAGS)
|
||||||
FORCE_DEBUG_ADAFLAGS = -g
|
FORCE_DEBUG_ADAFLAGS = -g
|
||||||
ADA_CFLAGS =
|
ADA_CFLAGS =
|
||||||
ADA_INCLUDES = -nostdinc -I- -I. -Iada -I$(srcdir)/ada -I$(srcdir)/ada/gcc-interface
|
ADA_INCLUDES = -nostdinc -I- -I. -Iada -I$(srcdir)/ada -I$(srcdir)/ada/gcc-interface
|
||||||
|
|
|
||||||
|
|
@ -773,6 +773,7 @@ coverage_flags
|
||||||
valgrind_command
|
valgrind_command
|
||||||
valgrind_path_defines
|
valgrind_path_defines
|
||||||
valgrind_path
|
valgrind_path
|
||||||
|
TREECHECKING
|
||||||
TREEBROWSER
|
TREEBROWSER
|
||||||
nocommon_flag
|
nocommon_flag
|
||||||
noexception_flags
|
noexception_flags
|
||||||
|
|
@ -6786,6 +6787,7 @@ if test x$ac_tree_checking != x ; then
|
||||||
$as_echo "#define ENABLE_TREE_CHECKING 1" >>confdefs.h
|
$as_echo "#define ENABLE_TREE_CHECKING 1" >>confdefs.h
|
||||||
|
|
||||||
TREEBROWSER=tree-browser.o
|
TREEBROWSER=tree-browser.o
|
||||||
|
TREECHECKING=yes
|
||||||
fi
|
fi
|
||||||
if test x$ac_types_checking != x ; then
|
if test x$ac_types_checking != x ; then
|
||||||
|
|
||||||
|
|
@ -6793,6 +6795,7 @@ $as_echo "#define ENABLE_TYPES_CHECKING 1" >>confdefs.h
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test x$ac_rtl_checking != x ; then
|
if test x$ac_rtl_checking != x ; then
|
||||||
|
|
||||||
$as_echo "#define ENABLE_RTL_CHECKING 1" >>confdefs.h
|
$as_echo "#define ENABLE_RTL_CHECKING 1" >>confdefs.h
|
||||||
|
|
@ -17822,7 +17825,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 17825 "configure"
|
#line 17828 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
|
@ -17928,7 +17931,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 17931 "configure"
|
#line 17934 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
|
|
||||||
|
|
@ -470,6 +470,7 @@ if test x$ac_tree_checking != x ; then
|
||||||
routines will also be enabled by this option.
|
routines will also be enabled by this option.
|
||||||
])
|
])
|
||||||
TREEBROWSER=tree-browser.o
|
TREEBROWSER=tree-browser.o
|
||||||
|
TREECHECKING=yes
|
||||||
fi
|
fi
|
||||||
if test x$ac_types_checking != x ; then
|
if test x$ac_types_checking != x ; then
|
||||||
AC_DEFINE(ENABLE_TYPES_CHECKING, 1,
|
AC_DEFINE(ENABLE_TYPES_CHECKING, 1,
|
||||||
|
|
@ -478,6 +479,7 @@ if test x$ac_types_checking != x ; then
|
||||||
])
|
])
|
||||||
fi
|
fi
|
||||||
AC_SUBST(TREEBROWSER)
|
AC_SUBST(TREEBROWSER)
|
||||||
|
AC_SUBST(TREECHECKING)
|
||||||
if test x$ac_rtl_checking != x ; then
|
if test x$ac_rtl_checking != x ; then
|
||||||
AC_DEFINE(ENABLE_RTL_CHECKING, 1,
|
AC_DEFINE(ENABLE_RTL_CHECKING, 1,
|
||||||
[Define if you want all operations on RTL (the basic data structure
|
[Define if you want all operations on RTL (the basic data structure
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue