From 897351ccbaf3a7010e28d856fc400af7a5661e14 Mon Sep 17 00:00:00 2001 From: augustin64 Date: Fri, 28 Oct 2022 12:32:25 +0200 Subject: [PATCH] Trying to resolve compilation failing in workflow --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 16ee7f8..e24d34d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ BUILDDIR := ./build SRCDIR := ./src CACHE_DIR := ./cache NVCC := nvcc -CC := gcc NVCC_INSTALLED := $(shell command -v nvcc 2> /dev/null) @@ -27,7 +26,7 @@ TESTS_OBJ = $(TESTS_SRC:test/%.c=$(BUILDDIR)/test-%) $(TESTS_SRC_CU:test/%.c # Compile flags CFLAGS = -std=c99 -lm -lpthread -NVCCFLAGS = +NVCCFLAGS = # Additional warning rules CFLAGS += -Wall -Wextra