From 7038bebd3dee34d1baa78126184308f37764b1de Mon Sep 17 00:00:00 2001 From: nicejs-is-cool Date: Tue, 2 Jun 2026 08:56:57 -0300 Subject: [PATCH] another makefile change because i forgot to use CXX --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9697f10..edc0a33 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ NATIVE_NAME=main all: java $(TARGET) $(TARGET): $(OBJS) - g++ -shared -o ${BASE_NPATH}/$(TARGET) \ + $(CXX) -shared -o ${BASE_NPATH}/$(TARGET) \ $(OBJS) ${BASE_NPATH}/libneonucleus.a $(TLA_PATH)/libtla.a -lc %.o: %.cpp $(CXX) -c -fPIC -I${JAVA_HOME}/include -I${JAVA_HOME}/include/linux $(CFLAGS) \