We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
本文介绍如何在Windows下依赖MSYS2编译QuickJS。
这里我们采用清华大学镜像在Windows系统下安装MSYS2。
安装完成后,按照pacman配置配置好镜像源(参考镜像站说明)。
由于Windows下目前只支持32位系统编译,这里我们安装32位系统的编译环境
# pacman -S mingw-w64-i686-toolchain # pacman -S mingw-w64-i686-dlfcn # pacman -S make
至此完成了编译环境的配置
现在我们编译QuickJS,首先我们配置下Makefile中的
Makefile
prefix=/home/Administrator/quickjs
然后执行make install进行编译,完成编译后则在/home/Administrator/quickjs目录下看到quickjs相关的可执行文件。
make install
/home/Administrator/quickjs
可以在QuickJS中文Issues中提出。