aboutsummaryrefslogtreecommitdiff
path: root/sim/riscv
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-01-01 14:22:46 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-10 01:15:28 -0500
commite7699de50225b7f954939c4438a5f90f972b6eaa (patch)
tree53d5f045c1557f43a73258eeca2d25682341d964 /sim/riscv
parent51bc8f3a16c5ce52bfde65db83251d874b185bd4 (diff)
downloadgdb-e7699de50225b7f954939c4438a5f90f972b6eaa.zip
gdb-e7699de50225b7f954939c4438a5f90f972b6eaa.tar.gz
gdb-e7699de50225b7f954939c4438a5f90f972b6eaa.tar.bz2
sim: riscv: move arch-specific file compilation to top-level
The arch-specific compiler flags are duplicated, but they'll be cleaned up once we move all subdir compiles to the top-level.
Diffstat (limited to 'sim/riscv')
-rw-r--r--sim/riscv/local.mk5
1 files changed, 2 insertions, 3 deletions
diff --git a/sim/riscv/local.mk b/sim/riscv/local.mk
index 6f03fc3..a77f6f7 100644
--- a/sim/riscv/local.mk
+++ b/sim/riscv/local.mk
@@ -16,6 +16,8 @@
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
+AM_CPPFLAGS_%C% = -DWITH_TARGET_WORD_BITSIZE=$(SIM_RISCV_BITSIZE)
+
%C%_libsim_a_SOURCES =
%C%_libsim_a_LIBADD = \
$(common_libcommon_a_OBJECTS) \
@@ -30,9 +32,6 @@ $(%C%_libsim_a_OBJECTS) $(%C%_libsim_a_LIBADD): %D%/hw-config.h
noinst_LIBRARIES += %D%/libsim.a
-%D%/%.o: %D%/%.c
- $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
-
%D%/%.o: common/%.c
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)