Le dimanche 3 décembre 2017 15:00:52 UTC+1, Ken Takata a écrit : > Hi, > > 2017/12/3 Sun 22:34:47 UTC+9 Ni Va wrote: > > Le dimanche 3 décembre 2017 12:50:42 UTC+1, Ken Takata a écrit : > > > Hi, > > > > > > 2017/12/3 Sun 18:34:23 UTC+9 Ni Va wrote: > > > > Hi, > > > > > > > > According this set for mvc makefile : > > > > > > > > @echo off > > > > > > > > :: Windows SDK Include directory. No quotation marks. > > > > set SDK_INCLUDE_DIR=C:\Program Files (x86)\Windows Kits\8.1\Include > > > > > > > > :: Visual Studio 2017 > > > > set VC_VARS=%ProgramFiles(x86)%\Microsoft Visual > > > > Studio\2017\Community\VC\Auxiliary\Build > > > > set VS_TOOLS=%ProgramFiles(x86)%\Microsoft Visual > > > > Studio\2017\Community\VC\Tools\MSVC\14.11.25503\bin > > > > > > > > :: Target architecture, AMD64 (64-bit) or I386 (32-bit) > > > > set CPU=%PROCESSOR_ARCHITECTURE% > > > > set PLATFORM=x64 > > > > > > > > :: Enable Ruby scripting > > > > set DYNAMIC_RUBY=yes > > > > set RUBY=C:\Ruby24-x64 > > > > set RUBY_VER=24 > > > > set RUBY_VER_LONG=2.4.0 > > > > set RUBY_API_VER_LONG=2.4.0 > > > > set RUBY_PLATFORM=x64-mswin64 > > > > set RUBY_MSVCRT_NAME=msvcrt > > > > > > > > > > > > The build tells me that include config.h does not exist. > > > > if_ruby.c > > > > c:\ruby24-x64\include\ruby-2.4.0\ruby/ruby.h(24): fatal error C1083: > > > > Impossible d'ouvrir le fichier include : 'ruby/config.h' : No such file > > > > or directory > > > > NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual > > > > Studio\2017\Community > > > > > > To build Vim with RubyInstaller using MSVC requires special hack. > > > See src/INSTALLpc.txt for detail. > > > > > > Regards, > > > Ken Takata > > > > Thank you Ken but last error already here. > > > > > > Creating Makefile.new > > "type `nmake' to make ruby." > > > > c:\Ruby_source\ruby>nmake .config.h.time > > > > Microsoft (R) Program Maintenance Utility Version 14.11.25547.0 > > Copyright (C) Microsoft Corporation. Tous droits réservés. > > > > Creating config.h > > .ext\include\i386-mswin32_140\ruby\config.h updated > > > > c:\Ruby_source\ruby>xcopy /s .ext\include C:\Ruby24\include > > Est-ce que C:\Ruby24\include désigne un nom de fichier > > ou un nom de répertoire de la destination > > (F = fichier, R = répertoire) ? > > I don't understand this error message, but the destination seems wrong. > "Ruby24" should be replaced by "Ruby24-x64", if you use 64-bit version. > > xcopy /s .ext\include C:\Ruby24-x64\include > > > Regards, > Ken Takata
Help installPC.txt should be modified on xcopy line : xcopy /s .ext\include\x64-mswin64_140 c:\Ruby24\include\ruby-2.4.0\ruby -- -- 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.
