- Notifications
You must be signed in to change notification settings - Fork 302
在Linux下编译QuickJS
llgoer edited this page Aug 1, 2019 · 2 revisions
本文介绍在Linux(Ubuntu)下编译QuickJS
在Ubuntu命令行中执行
sudo apt-get install -y build-essential gcc-multilib
这个命令安装编译基础环境。
现在我们编译QuickJS,首先我们配置下Makefile
中的
prefix=/home/llgoer/quickjs
然后执行make install
进行编译,完成编译后则在/home/llgoer/quickjs
目录下看到quickjs相关的可执行文件。
可以在QuickJS中文Issues中提出。