summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--utils.mk6
-rw-r--r--version.mk2
3 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0bfa6f2..95d47ea 100644
--- a/Makefile
+++ b/Makefile
@@ -104,6 +104,7 @@ endif
LDFLAGS += -lX11 -lXext -lm
LDFLAGS += $(GTK_LDFLAGS)
+LDFLAGS += $(LIBDL_LDFLAGS)
MANPAGE_GZIP ?= 1
diff --git a/utils.mk b/utils.mk
index 882b6ce..dbdc70d 100644
--- a/utils.mk
+++ b/utils.mk
@@ -97,6 +97,12 @@ ifndef TARGET_ARCH
TARGET_ARCH := $(subst i686,x86,$(TARGET_ARCH))
endif
+ifeq ($(TARGET_OS),Linux)
+ LIBDL_LDFLAGS = -ldl
+else
+ LIBDL_LDFLAGS =
+endif
+
OUTPUTDIR ?= _out/$(TARGET_OS)_$(TARGET_ARCH)
NV_QUIET_COMMAND_REMOVED_TARGET_PREFIX ?=
diff --git a/version.mk b/version.mk
index 1d632c0..722fc03 100644
--- a/version.mk
+++ b/version.mk
@@ -1 +1 @@
-NVIDIA_VERSION = 260.19.36
+NVIDIA_VERSION = 260.19.44