diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-03 03:13:02 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-03 15:14:55 -0400 |
commit | 6ed0d0a080bc6e755d1e983366b4a59f471ee808 (patch) | |
tree | ebd6935052a9e6246e25ed79c0b54f05627f0b7d /sim/ppc/Makefile.in | |
parent | d54c09b99e6470e32d848a531f676734978a8951 (diff) | |
download | gdb-6ed0d0a080bc6e755d1e983366b4a59f471ee808.zip gdb-6ed0d0a080bc6e755d1e983366b4a59f471ee808.tar.gz gdb-6ed0d0a080bc6e755d1e983366b4a59f471ee808.tar.bz2 |
sim: ppc: inline common sim-fpu.c logic
We will never bother building w/out a ../common/ sim directory,
so drop ancient logic supporting that method.
Diffstat (limited to 'sim/ppc/Makefile.in')
-rw-r--r-- | sim/ppc/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 2f8fe9b..b991895 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -86,7 +86,7 @@ CONFIG_CFLAGS = \ $(MODEL_CFLAGS) \ $(TERMIO_CFLAGS) \ $(DEVZERO_CFLAGS) -SIM_FPU_CFLAGS = @sim_fpu_cflags@ +SIM_FPU_CFLAGS = -DHAVE_COMMON_FPU -I../common -I${srcdir}/../common STD_CFLAGS = $(CFLAGS) $(WERROR_CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(INCGNU) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS) NOWARN_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(INCLUDES) $(SIM_FPU_CFLAGS) @@ -507,7 +507,7 @@ LIB_OBJ = \ semantics.o \ idecode.o \ support.o \ - @sim_fpu@ \ + sim-fpu.o \ psim.o \ $(COMMON_OBJS) \ $(PACKAGE_OBJ) \ |