From a181e75211b154ffe66e69799898465725333cd2 Mon Sep 17 00:00:00 2001 From: "ethanseow2002@gmail.com" Date: Wed, 24 Dec 2025 22:00:53 +0800 Subject: [PATCH] removed some incorrect comments --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 465b4ad..cdb95ed 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,6 @@ OBJS_x86 := $(ENTRY_OBJ_x86) $(COMMON_OBJS_x86) all: dist/$(BOFNAME).x64.o dist/$(BOFNAME).x86.o # Linking stage -# Removed -lucrt to prioritize the ubiquitous msvcrt.dll dist/$(BOFNAME).x64.o: $(OBJS_x64) @mkdir -p dist $(BOFLINK) -L/usr/x86_64-w64-mingw32/lib $(OBJS_x64) --entry=go -lkernel32 -lmsvcrt -lntdll -ladvapi32 -lucrt -o $@