【修改】1. 结合plugin_manage进行测试;2. 调试过程中发现的问题

This commit is contained in:
niubinghui
2024-08-16 16:14:29 +08:00
parent 57ba762b78
commit 8a66645ea5
3 changed files with 3 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ OBJECTS := lua_plugin_data.o \
INCLUDE = -I$(TOPDIR)/dependence/include -I$(TOPDIR)/include
CFLAGS = -g -Wextra -Wall -O0 -fPIC
# CFLAGS += -pedantic -fsanitize=address
LDLIBS = -L$(TOPDIR)/dependence/lib -llua -ltoml -ldl -lm
LDLIBS = -L$(TOPDIR)/dependence/lib -llua -ltoml -lplugin_manager -ldl -lm
all:$(OBJECTS)
$(CC) $(CFLAGS) -shared -o $(TARGET) $(OBJECTS) $(LDLIBS)