I have just started to look at Scintilla and Scite.I have downloaded the source for both Scintilla and Scite. I have successfully built Scintilla. I have the Scintilla.dll and SciLexer.dll in /scintilla/bin.However I am having difficulty building Scite.I have two errors. These errors occur whether I am running `mingw32-make` under Windows 7 `cmd`, or `make` under `msys.bat`.process_begin: CreateProcess(NULL, ver, ...) failed or make: ver: Command not foundandprocess_being: CreateProcess(NULL, copy ..\..\scintilla\bin\Scintilla.dll ..\bin\Scintiall.dll, ...) failed or make: *** no rule to make target '..\..\scintilla\bin\Scintilla.dll, needed by ..\bin\Scintilla.dll. Stop
If I type 'ver' at the Windows 7 'cmd' prompt, I get the cmd version 6.1.7601. If I type ver at the 'msys.bat' prompt, I get 'command not found'.
These directories are on my path: C:\MinGW\bin;C:\MinGW\msys\1.0\binI'm running Windows 7 on a ThinkPad. My version of MinGW is 4.6.2-1. My PROCESSOR_ARCHITECTURE=AMD64.Any suggestions on how to resolve these issues would be most helpful.
process_being: CreateProcess(NULL, copy ..\..\scintilla\bin\Scintilla.dll ..\bin\Scintiall.dll, ...) failed or make: *** no rule to make target '..\..\scintilla\bin\Scintilla.dll, needed by ..\bin\Scintilla.dll. Stop
--
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scite-interest+unsubscribe@googlegroups.com.
To post to this group, send email to scite-interest@googlegroups.com.
Visit this group at http://groups.google.com/group/scite-interest?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Unfortunately no. MinGW does not add any variables system-wide. You can recognize msys environment if you run application from msys' shell. But not from cmd.exe
On Apr 10, 2013 6:42 PM, "Neil Hodgson" <nyama...@me.com> wrote:
George Brink:
> -- at the beginning of makefile:
> # choose MinGW/MSYS or Windows style tools for file deletion a...
Doesn't msys have an identifying environment variable that can be tested?
Neil
--
You received this message because you are subscribed to the Google Groups "scite-interest" grou...
Unfortunately no. MinGW does not add any variables system-wide. You can recognize msys environment if you run application from msys' shell. But not from cmd.exe
--
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scite-interes...@googlegroups.com.
To post to this group, send email to scite-i...@googlegroups.com.
I am a little surprised but yes. When you run make from under msys's shell the cmd.exe does not behave well. It starts in the interactive mode and ignore the /C key (as well as the rest of a command line).
So my previous suggestion with a check of existence of rm.exe and cmd.exe remains the best choice...