From: Mike Frysinger Date: Mon, 1 Jan 2024 20:24:12 +0000 (-0500) Subject: sim: ppc: simplify filter_host.c logic X-Git-Tag: binutils-2_42~319 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a295b6b0cd772f88d36c6f4fca48e18f414f1ccc;p=thirdparty%2Fbinutils-gdb.git sim: ppc: simplify filter_host.c logic Switch this from a build-time generation to a static include. This makes the build rules a bit simpler, especially as we move them to Automake from hand-written makefiles. --- diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 48adacc0971..ee8fb0462eb 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -613,20 +613,14 @@ tmp-igen: igen $(srcdir)/powerpc.igen $(srcdir)/altivec.igen $(srcdir)/e500.igen -n support.c -f support.c $(SILENCE) touch $@ -# NOTE: Some versions of make don't handle files created as side-effects -# uncomment the below if that is the case. - $(TARGETLIB): tmp-igen itable.h itable.c icache.h icache.c idecode.h idecode.c semantics.h semantics.c model.h model.c support.h support.c: tmp-igen igen: igen.o table.o lf.o misc.o filter_host.o ld-decode.o ld-cache.o filter.o ld-insn.o gen-model.o gen-itable.o gen-icache.o gen-semantics.o gen-idecode.o gen-support.o $(ECHO_CCLD) $(LINK_FOR_BUILD) igen.o table.o lf.o misc.o filter_host.o ld-decode.o ld-cache.o filter.o ld-insn.o gen-model.o gen-itable.o gen-icache.o gen-semantics.o gen-idecode.o gen-support.o -filter_host.c: filter_filename.c - $(ECHO_GEN) cat $(srcdir)/filter_filename.c > filter_host.c - filter_host.o: filter_host.c $(CONFIG_H) $(FILTER_FILENAME_H) - $(ECHO_CC) $(COMPILE_FOR_BUILD) -c filter_host.c + $(ECHO_CC) $(COMPILE_FOR_BUILD) -c $(srcdir)/filter_host.c table.o: table.c $(CONFIG_H) $(MISC_H) $(LF_H) $(TABLE_H) $(ECHO_CC) $(COMPILE_FOR_BUILD) -c $(srcdir)/table.c diff --git a/sim/ppc/filter_host.c b/sim/ppc/filter_host.c new file mode 100644 index 00000000000..87d9bbc2e22 --- /dev/null +++ b/sim/ppc/filter_host.c @@ -0,0 +1,18 @@ +/* Shim to share files between build & host programs. + + Copyright (C) 2024 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 . */ + +#include "filter_filename.c"