Hi Steve, 2013/02/16 Sat 5:45:48 UTC+9 Steve Hall wrote:
> > > > Do you enable OLE? Sorry, I didn't care about that. > > Please try attached patch with an option STATIC_STDCPLUS=yes. > > > > $ make -f Make_cyg.mak STATIC_STDCPLUS=yes > > > > This option is the same as Make_ming.mak. > > This breaks my gui build (gvim.exe) with OLE=yes reporting the > following: Sorry. There was a mistake in my patch. I have updated the patch. Please try this. Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
# HG changeset patch # Parent c6107b4575a4f00f6f896b9335ae6c406af61453 diff --git a/src/Make_cyg.mak b/src/Make_cyg.mak --- a/src/Make_cyg.mak +++ b/src/Make_cyg.mak @@ -106,6 +106,13 @@ OPTIMIZE = MAXSPEED endif + +# Link against the shared version of libstdc++ by default. Set +# STATIC_STDCPLUS to "yes" to link against static version instead. +ifndef STATIC_STDCPLUS +STATIC_STDCPLUS=no +endif + ### See feature.h for a list of optionals. ### Any other defines can be included here. @@ -478,7 +485,12 @@ ifeq (yes, $(OLE)) DEFINES += -DFEAT_OLE EXTRA_OBJS += $(OUTDIR)/if_ole.o -EXTRA_LIBS += -loleaut32 -lstdc++ +EXTRA_LIBS += -loleaut32 +ifeq (yes, $(STATIC_STDCPLUS)) +EXTRA_LIBS += -Wl,-Bstatic -lstdc++ -lsupc++ -Wl,-Bdynamic +else +EXTRA_LIBS += -lstdc++ +endif endif ##############################
