Jon
unread,Aug 22, 2010, 5:19:46 PM8/22/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to vim_dev
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
###########################################################################