aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTimos Ampelikiotis <t.ampelikiotis@virtualopensystems.com>2022-11-25 15:56:03 +0100
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-03 15:18:54 +0300
commitfc33f9b651babf991fc39306764e3d6d7b68143b (patch)
tree2fb5234cba0eb690ed7a824fbd39ec927025490c /Makefile
parente6d6621bced8b62dc9f98a09870b527535cbb158 (diff)
Update virtio-loopback-adapter Beta version:
- Add exclusive eventfd for notifications - Update eventfd handler for vhost-user call Signed-off-by: Timos Ampelikiotis <t.ampelikiotis@virtualopensystems.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 218d7a6..3d18b6a 100644
--- a/Makefile
+++ b/Makefile
@@ -22,13 +22,13 @@
#CFLAGS := -Wall -Wextra -Wno-unused-variable -Wno-unused-function
CFLAGS := -Wno-unused-variable -Wno-unused-function
CFLAGS =
-CC =
+CC ?=
ifeq ($(ARCH), arm64)
# arm64
- CC = aarch64-linux-gnu-gcc
+ CC ?= aarch64-linux-gnu-gcc
else
- CC = gcc
+ CC ?= gcc
endif
ifeq ($(VHOST_USER_RNG), 1)