aboutsummaryrefslogtreecommitdiff
path: root/sim/common
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-01-02 14:17:56 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-02 22:21:01 -0500
commit127d167a988ae35488e1c4046ece695f2f27f535 (patch)
tree00764d8f867a7d05b881f0d4bfe9a8d6b059a4f4 /sim/common
parent80636a54bcfa2bca3dc8f7de4a7825f86585b1f1 (diff)
downloadgdb-127d167a988ae35488e1c4046ece695f2f27f535.zip
gdb-127d167a988ae35488e1c4046ece695f2f27f535.tar.gz
gdb-127d167a988ae35488e1c4046ece695f2f27f535.tar.bz2
sim: common: drop libcommon.a linkage
All of these objects should be in libsim.a already, so don't link to it too. In practice it never gets used, but no point in listing it.
Diffstat (limited to 'sim/common')
-rw-r--r--sim/common/local.mk4
1 files changed, 1 insertions, 3 deletions
diff --git a/sim/common/local.mk b/sim/common/local.mk
index 22917e0..dd6ed5f 100644
--- a/sim/common/local.mk
+++ b/sim/common/local.mk
@@ -30,8 +30,7 @@ SIM_ALL_RECURSIVE_DEPS += \
## NB: libcommon.a isn't used directly by ports. We need a target for common
## objects to be a part of, and ports use the individual objects directly.
-SIM_COMMON_LIB = %D%/libcommon.a
-noinst_LIBRARIES += $(SIM_COMMON_LIB)
+noinst_LIBRARIES += %D%/libcommon.a
%C%_libcommon_a_SOURCES = \
%D%/callback.c \
%D%/portability.c \
@@ -136,7 +135,6 @@ BFD_LIB = ../bfd/libbfd.la
OPCODES_LIB = ../opcodes/libopcodes.la
SIM_COMMON_LIBS = \
- $(SIM_COMMON_LIB) \
$(BFD_LIB) \
$(OPCODES_LIB) \
$(LIBIBERTY_LIB) \