Now that you've gotten past the 7.3 release (thanks BTW) what specifically do you need from me in order to review the following 2- line-change patch enabling one to build on Windows like:
== MSYS + MinGW/TDM 4.5.0 == make -f Make_mingw.mak gvim.exe == LLVM-GCC 2.7 == mingw32-make -f Make_mingw.make all CC=llvm-gcc CXX=llvm-g++ diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak --- a/src/GvimExt/Make_ming.mak +++ b/src/GvimExt/Make_ming.mak @@ -33,7 +33,7 @@ endif endif CXX := $(CROSS_COMPILE)g++ -WINDRES := $(CROSS_COMPILE)windres +WINDRES := $(CROSS_COMPILE)windres --preprocessor="$(CXX) -E -xc" - DRC_INVOKED LIBS := -luuid RES := gvimext.res DEFFILE = gvimext_ming.def diff --git a/src/Make_ming.mak b/src/Make_ming.mak --- a/src/Make_ming.mak +++ b/src/Make_ming.mak @@ -303,7 +303,7 @@ endif endif CC := $(CROSS_COMPILE)gcc -WINDRES := $(CROSS_COMPILE)windres +WINDRES := $(CROSS_COMPILE)windres --preprocessor="$(CC) -E -xc" - DRC_INVOKED #>>>>> end of choices ########################################################################### -- 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
