Emscripten无法找到cmake的路径

时间:2015-09-30 03:47:52

标签: c++ llvm emscripten asm.js

I've gone over the instructions several times,在无数论坛中查看过,仍无法解决此问题。

我正在运行Windows 10,只是尝试安装Emscripten。我安装了Emscripten:

enter image description here

我跑

# Fetch the latest registry of available tools.
emsdk update

接着是

# Download and install the latest SDK tools.
emsdk install latest

enter image description here

但它继续抛出无法找到cmake路径的相同警告。

我已下载并安装 cmake-3.3.2-win32-x86 。我不能从安装中创建PATH,因为它说文件长度太长。奇怪,因为它安装在这里:

C:\ Program Files(x86)\ CMake \ bin

我想我可以自己设置路径as seen in this SO post。因此,我在上图之后使用了这个命令:

set PATH="C:\Program Files (x86)\CMake\bin\";%PATH%

并且有同样的问题。我是新鲜的想法。是否与64位版本的clang和sdk正在安装这一事实有关,但Cmake只有32位风格?

1 个答案:

答案 0 :(得分:4)

Windows上的PATH环境变量不需要引号。

set PATH=C:\Program Files (x86)\CMake\bin\;%PATH%