【发布时间】:2015-09-30 03:47:51
【问题描述】:
I've gone over the instructions several times,看了无数个论坛,还是解决不了这个问题。
我正在运行 Windows 10,只是尝试安装 Emscripten。我已经安装了 Emscripten:
我跑
# Fetch the latest registry of available tools.
emsdk update
紧随其后
# Download and install the latest SDK tools.
emsdk install latest
但它继续抛出关于无法找到 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 位版本?
【问题讨论】:
标签: c++ llvm emscripten asm.js