From 9175b8de026f06c97181dc63b4111ee349f060dd Mon Sep 17 00:00:00 2001 From: Saiyedul Islam Date: Thu, 7 Mar 2024 01:04:30 +0530 Subject: [PATCH] Use system's default rocgdb instead of AOMP's rocgdb requires libpython.so which is more likely to be found by the system's default rocgdb. The one in AOMP/bin/rocgdb complains about missing libpython.so file. --- test/smoke/clang-325070/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/smoke/clang-325070/Makefile b/test/smoke/clang-325070/Makefile index 6d2c7b19c..015bb78eb 100644 --- a/test/smoke/clang-325070/Makefile +++ b/test/smoke/clang-325070/Makefile @@ -5,7 +5,7 @@ TESTSRC_MAIN = clang-325070.cpp TESTSRC_AUX = TESTSRC_ALL = $(TESTSRC_MAIN) $(TESTSRC_AUX) -RUNCMD = $(AOMP)/bin/rocgdb -x doit.gdb --args ./$(TESTNAME) 0 +RUNCMD = rocgdb -x doit.gdb --args ./$(TESTNAME) 0 CLANG = clang++ CFLAGS = -g -O0