From 602afc36e765de6cd773110a171dda5e0a6b07b0 Mon Sep 17 00:00:00 2001 From: Treece Burgess Date: Thu, 1 Aug 2024 19:41:59 +0000 Subject: [PATCH] Removing unneeded + from NVCFLAGS assignment. --- src/components/cuda/tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/cuda/tests/Makefile b/src/components/cuda/tests/Makefile index 1b4d4db2a..a2f337a98 100644 --- a/src/components/cuda/tests/Makefile +++ b/src/components/cuda/tests/Makefile @@ -15,7 +15,7 @@ TESTS_NOCTX = concurrent_profiling_noCuCtx pthreads_noCuCtx \ NVCC = $(PAPI_CUDA_ROOT)/bin/nvcc PAPI_FLAG = -DPAPI # Comment this line for tests to run without PAPI profiling -NVCFLAGS += -g -ccbin='$(CC)' $(PAPI_FLAG) +NVCFLAGS = -g -ccbin='$(CC)' $(PAPI_FLAG) CFLAGS += -g $(PAPI_FLAG) INCLUDE += -I$(PAPI_CUDA_ROOT)/include CUDALIBS = -L$(PAPI_CUDA_ROOT)/lib64 -lcudart -lcuda