From c896ae0db87ffa45386b0ecd96fb45363e5f7535 Mon Sep 17 00:00:00 2001 From: yuvaramachandran_gurusamy Date: Mon, 19 Jan 2026 10:33:13 +0000 Subject: [PATCH 1/2] RDKEMW-12902: Adding IARMBus dependency during Build Time Signed-off-by: yuvaramachandran_gurusamy --- ds/Makefile | 4 ++-- rpc/cli/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ds/Makefile b/ds/Makefile index 66e9c37b..34b60f71 100644 --- a/ds/Makefile +++ b/ds/Makefile @@ -47,8 +47,8 @@ all: install library: $(OBJS) @echo "Building $(LIBNAMEFULL) ...." - $(CXX) $(OBJS) $(CFLAGS) $(DSHAL_LDFLAGS) -L$(INSTALL)/lib -ldshalcli -shared -o $(LIBNAMEFULL) - $(CXX) $(OBJS) $(CFLAGS) -L$(INSTALL)/lib -ldshalcli -shared -o $(LIBNAMECLI) + $(CXX) $(OBJS) $(CFLAGS) $(DSHAL_LDFLAGS) -L$(INSTALL)/lib -lIARMBus -ldshalcli -shared -o $(LIBNAMEFULL) + $(CXX) $(OBJS) $(CFLAGS) -L$(INSTALL)/lib -lIARMBus -ldshalcli -shared -o $(LIBNAMECLI) %.o: %.cpp @echo "Building $@ ...." diff --git a/rpc/cli/Makefile b/rpc/cli/Makefile index 8acae1df..ab24c14f 100644 --- a/rpc/cli/Makefile +++ b/rpc/cli/Makefile @@ -37,7 +37,7 @@ all: install library: $(OBJS) @echo "Building $(LIBNAMEFULL) ...." - $(CXX) $(OBJS) $(CFLAGS) -shared -o $(LIBNAMEFULL) + $(CXX) $(OBJS) $(CFLAGS) -lIARMBus -shared -o $(LIBNAMEFULL) %.o: %.cpp @echo "Building $@ ...." From db0e1a6739677666b6a0d83c58bf28d7dcb7f3f7 Mon Sep 17 00:00:00 2001 From: Yuvaramachandran Gurusamy <123441336+yuvaramachandran-gurusamy@users.noreply.github.com> Date: Tue, 27 Jan 2026 17:05:33 +0530 Subject: [PATCH 2/2] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- ds/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ds/Makefile b/ds/Makefile index 34b60f71..969e0df1 100644 --- a/ds/Makefile +++ b/ds/Makefile @@ -47,8 +47,8 @@ all: install library: $(OBJS) @echo "Building $(LIBNAMEFULL) ...." - $(CXX) $(OBJS) $(CFLAGS) $(DSHAL_LDFLAGS) -L$(INSTALL)/lib -lIARMBus -ldshalcli -shared -o $(LIBNAMEFULL) - $(CXX) $(OBJS) $(CFLAGS) -L$(INSTALL)/lib -lIARMBus -ldshalcli -shared -o $(LIBNAMECLI) + $(CXX) $(OBJS) $(CFLAGS) $(DSHAL_LDFLAGS) -L$(INSTALL)/lib -ldshalcli -lIARMBus -shared -o $(LIBNAMEFULL) + $(CXX) $(OBJS) $(CFLAGS) -L$(INSTALL)/lib -ldshalcli -lIARMBus -shared -o $(LIBNAMECLI) %.o: %.cpp @echo "Building $@ ...."