From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 75654 invoked by alias); 30 Mar 2015 07:07:42 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 75637 invoked by uid 89); 30 Mar 2015 07:07:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.2 required=5.0 tests=AWL,BAYES_00,SPF_PASS,T_RP_MATCHES_RCVD,URIBL_BLACK autolearn=no version=3.3.2 X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 30 Mar 2015 07:07:40 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 5B9CA340A51; Mon, 30 Mar 2015 07:07:37 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Cc: nickc@redhat.com Subject: [PATCH] sim: arm: move COPRO settings to the makefile Date: Mon, 30 Mar 2015 07:07:00 -0000 Message-Id: <1427699256-31652-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes X-SW-Source: 2015-03/txt/msg00983.txt.bz2 These values are the same all the time, so just list them directly in the Makefile. Committed. --- sim/arm/ChangeLog | 8 ++++++++ sim/arm/Makefile.in | 5 ++--- sim/arm/configure | 22 ++-------------------- sim/arm/configure.ac | 6 ------ 4 files changed, 12 insertions(+), 29 deletions(-) diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 94bd72f..9441a61 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,11 @@ +2015-03-30 Mike Frysinger + + * Makefile.in (COPRO): Delete. + (SIM_OBJS): Expand COPRO. + * configure.ac: Deletd stdint.h check. + (COPRO): Delete. + * configure: Regenerate. + 2015-03-16 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/arm/Makefile.in b/sim/arm/Makefile.in index 80271c0..f218633 100644 --- a/sim/arm/Makefile.in +++ b/sim/arm/Makefile.in @@ -20,13 +20,12 @@ SIM_EXTRA_CFLAGS = -DMODET -DNEED_UI_LOOP_HOOK -DSIM_TARGET_SWITCHES \ -DSIM_USE_DEPRECATED_RUN_FRONTEND -COPRO=@COPRO@ - # Use the deprecated run frontend until we migrate to nrun.o SIM_RUN_OBJS = run.o SIM_OBJS = armemu26.o armemu32.o arminit.o armos.o armsupp.o \ - armvirt.o bag.o thumbemu.o wrapper.o sim-load.o $(COPRO) + armvirt.o bag.o thumbemu.o wrapper.o sim-load.o \ + armcopro.o maverick.o iwmmxt.o ## COMMON_POST_CONFIG_FRAG diff --git a/sim/arm/configure b/sim/arm/configure index 4e0221e..fa26277 100755 --- a/sim/arm/configure +++ b/sim/arm/configure @@ -601,7 +601,6 @@ ac_includes_default="\ ac_subst_vars='LTLIBOBJS LIBOBJS cgen_breaks -COPRO REPORT_BUGS_TEXI REPORT_BUGS_TO PKGVERSION @@ -12355,7 +12354,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12358 "configure" +#line 12357 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12461,7 +12460,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12464 "configure" +#line 12463 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12951,23 +12950,6 @@ sim_link_links="${sim_link_links} targ-vals.def" -for ac_header in stdint.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" -if test "x$ac_cv_header_stdint_h" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_STDINT_H 1 -_ACEOF - -fi - -done - - -COPRO="armcopro.o maverick.o iwmmxt.o" - - - ac_sources="$sim_link_files" ac_dests="$sim_link_links" diff --git a/sim/arm/configure.ac b/sim/arm/configure.ac index 82d995f..799a5df 100644 --- a/sim/arm/configure.ac +++ b/sim/arm/configure.ac @@ -5,10 +5,4 @@ sinclude(../common/acinclude.m4) SIM_AC_COMMON -AC_CHECK_HEADERS(stdint.h) - -COPRO="armcopro.o maverick.o iwmmxt.o" - -AC_SUBST(COPRO) - SIM_AC_OUTPUT -- 2.3.4