I tried to compile Vim with Racket (Make_mvc.mak) and Visual Studio 2010. However, it seems that somewhere the path is not properly escaped.
Racket is installed to C:\Program Files (x86)\Racket, I set LIBRACKET to the correct version (3m_9yeyy0 currently, this is also a part of the library's file name as intended). Then I tried to do this: > nmake /C /S /f Make_mvc.mak CPU=i386 DEBUG=no SNIFF=yes > FEATURES=HUGE MBYTE=yes CSCOPE=yes IME=yes GIME=yes GUI=yes OLE=no > MZSCHEME="%PROGRAMFILES(X86)%\Racket" DYNAMIC_MZSCHEME=no > MZSCHEME_MAIN_LIB=racket MZSCHEME_VER=%LIBRACKET% However, it horribly fails: > ... > Processing C:\Program Files (x86)\Microsoft > SDKs\Windows\v7.0A\include\objidl.idl > objidl.idl > Processing C:\Program Files (x86)\Microsoft > SDKs\Windows\v7.0A\include\oaidl.acf > oaidl.acf > Der Befehl "C:\Program" ist entweder falsch geschrieben oder konnte nicht > gefunden werden. > NMAKE : U1077: "C:\Program": Rückgabe-Code "0x1" > Stop. Removing the MZSCHEME parameters fixed that issue. As other parameters like LUA="%PROGRAMFILES(X86)%\Lua\" work, I guess something is broken with the MzScheme/Racket integration here. After a quick peek at the Make_mvc.mak, I added some quotation marks around every occurrence of "$(MZSCHEME)" which fixed half of the problems, however it still failed to link. Investigating... -- -- 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/d/optout.
