Commit 035148c8 authored by Nikias Bassen's avatar Nikias Bassen

win32: Try to prevent linking against libgcc_s_dw2

While this works for libplist.dll, libplist++.dll will still have the
_Unwind_Resume symbol being imported from libgcc_s_dw2-1.dll and
there doesn't seem to be a way to prevent that.
parent 9950acbe
......@@ -44,8 +44,8 @@ libplist___la_SOURCES = Node.cpp \
$(top_srcdir)/include/plist/Uid.h
if WIN32
libplist_la_LDFLAGS += -avoid-version
libplist___la_LDFLAGS += -avoid-version
libplist_la_LDFLAGS += -avoid-version -static-libgcc
libplist___la_LDFLAGS += -avoid-version -static-libgcc
endif
pkgconfigdir = $(libdir)/pkgconfig
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment