无法在 Windows 上安装 Valgrind
Can't install Valgrind on Windows
我正在尝试安装 Valgrind,但是在 cd 到源目录之后,每次我尝试使用 ./configure 时,我都会得到那个“。”不被识别为内部或外部命令..
有人可以帮忙吗?
编辑:这里的问题不同于询问 Valgrind 的其他替代品,我的问题是特定于如何在 cmd 上编写命令!!
/
是开关字符。 .
可以是几样东西。更改为 .\configure
。然而 .\configure
与 configure
.
完全相同
Windows 将尝试理解错误的路径。但是随着命令变得越来越复杂,它会假定您做对了。
. (win.ini) the LAST dot in a file path separates the name from extension
. (dir .\*.txt) the current directory
经过一些研究,我确信它不是为 Windows 平台设计的。还有一些人对 Windows 做同样的事情......
我正在尝试安装 Valgrind,但是在 cd 到源目录之后,每次我尝试使用 ./configure 时,我都会得到那个“。”不被识别为内部或外部命令..
有人可以帮忙吗?
编辑:这里的问题不同于询问 Valgrind 的其他替代品,我的问题是特定于如何在 cmd 上编写命令!!
/
是开关字符。 .
可以是几样东西。更改为 .\configure
。然而 .\configure
与 configure
.
Windows 将尝试理解错误的路径。但是随着命令变得越来越复杂,它会假定您做对了。
. (win.ini) the LAST dot in a file path separates the name from extension
. (dir .\*.txt) the current directory
经过一些研究,我确信它不是为 Windows 平台设计的。还有一些人对 Windows 做同样的事情......