The Eclipse "clean" command for a C ++ project generates "cannot start the" del "program: the launch failed" for Win8.1

I found this error reported on 2008-07-30, and its status is still "NEW". As I can see from this patch, Eclipse (version: Luna Release (4.4.0) Build ID: 20140612-0600) is trying to delete some files using "del" or cmd /c del - are not correct.

If Eclipse can request the -rm command as described here , I would install any UNIX-like command application as a solution to the problem. But what should I do to add the "del" command for my Win8?

I tried to take rm.exe from MinGW, rename it to del.exe and put in the path. But then the error is β€œdel: can lstat` src / test.o": there is no such file or directory. "The same for rm.exe from cygwin64 does not give an error, but also does not delete o files - it was expected due to different command syntax rm and del.

+5
source share

Source: https://habr.com/ru/post/1203619/


All Articles