Compare commits

...

1 Commits

Author SHA1 Message Date
Evan Hunt
ff37ac806e add -luv to Makefiles where needed
Since we are now using libuv to get the memory size and number
of processors, on some platforms, applications will need to
link with libuv that didn't before.
2024-10-01 20:32:27 -07:00

View File

@@ -23,12 +23,12 @@ AM_LDFLAGS += \
-Wl,-flat_namespace
endif HOST_MACOS
LIBISC_CFLAGS = $(LIBUV_CFLAGS)
LIBISC_LIBS = $(LIBUV_LIBS)
if HAVE_JEMALLOC
LIBISC_CFLAGS = $(JEMALLOC_CFLAGS)
LIBISC_LIBS = $(JEMALLOC_LIBS)
else
LIBISC_CFLAGS =
LIBISC_LIBS =
LIBISC_CFLAGS += $(JEMALLOC_CFLAGS)
LIBISC_LIBS += $(JEMALLOC_LIBS)
endif
LIBISC_CFLAGS += \