diff --git a/Makefile.mk b/Makefile.mk index 9100500..6759e24 100644 --- a/Makefile.mk +++ b/Makefile.mk @@ -35,7 +35,10 @@ ifeq ($(MACOS),true) LINK_OPTS = -fdata-sections -ffunction-sections -Wl,-dead_strip -Wl,-dead_strip_dylibs else # Common linker flags -LINK_OPTS = -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed -Wl,--strip-all +LINK_OPTS = -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed +ifneq ($(SKIP_STRIPPING),true) +LINK_OPTS += -Wl,--strip-all +endif endif ifeq ($(RASPPI),true) diff --git a/dpf b/dpf index cda831f..c3a3ee0 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit cda831ffcd5f4fe6138e86e5fab70d81f4cf3a18 +Subproject commit c3a3ee004eb5427067488f425540ba54336e4d38