其实非常的简单,就是正常的make 和make install就行了,这里只是简单的做个编译过程记录。
打开开始--程序--里面的msys64里面的mingw64控制台窗口,切换到quickjs下载解压缩后的目录,执行make和make install
ndy@HP66G5 MINGW64 ~
$ cd d://ndy@HP66G5 MINGW64 /d
$ cd cppndy@HP66G5 MINGW64 /d/cpp
$ dirquickjs-0.9.0ndy@HP66G5 MINGW64 /d/cpp
$ cd quickjs-0.9.0/ndy@HP66G5 MINGW64 /d/cpp/quickjs-0.9.0
$ make
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local
-- Building for: Ninja
-- The C compiler identification is GNU 14.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: D:/msys64/mingw64/bin/cc.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Building in Release mode
-- Building with GNU 14.2.0 on Windows-10.0.26100
-- Performing Test COMPILER_SUPPORTS_Wall
-- Performing Test COMPILER_SUPPORTS_Wall - Success
-- Performing Test COMPILER_SUPPORTS_Werror
-- Performing Test COMPILER_SUPPORTS_Werror - Success
-- Performing Test COMPILER_SUPPORTS_Wextra
-- Performing Test COMPILER_SUPPORTS_Wextra - Success
-- Performing Test COMPILER_SUPPORTS_Wformat=2
-- Performing Test COMPILER_SUPPORTS_Wformat=2 - Success
-- Performing Test COMPILER_SUPPORTS_Wnoimplicitfallthrough
-- Performing Test COMPILER_SUPPORTS_Wnoimplicitfallthrough - Success
-- Performing Test COMPILER_SUPPORTS_Wnosigncompare
-- Performing Test COMPILER_SUPPORTS_Wnosigncompare - Success
-- Performing Test COMPILER_SUPPORTS_Wnomissingfieldinitializers
-- Performing Test COMPILER_SUPPORTS_Wnomissingfieldinitializers - Success
-- Performing Test COMPILER_SUPPORTS_Wnounusedparameter
-- Performing Test COMPILER_SUPPORTS_Wnounusedparameter - Success
-- Performing Test COMPILER_SUPPORTS_Wnounusedbutsetvariable
-- Performing Test COMPILER_SUPPORTS_Wnounusedbutsetvariable - Success
-- Performing Test COMPILER_SUPPORTS_Wnounusedresult
-- Performing Test COMPILER_SUPPORTS_Wnounusedresult - Success
-- Performing Test COMPILER_SUPPORTS_Wnostringoptruncation
-- Performing Test COMPILER_SUPPORTS_Wnostringoptruncation - Success
-- Performing Test COMPILER_SUPPORTS_Wnoarraybounds
-- Performing Test COMPILER_SUPPORTS_Wnoarraybounds - Success
-- Performing Test COMPILER_SUPPORTS_funsignedchar
-- Performing Test COMPILER_SUPPORTS_funsignedchar - Success
-- BUILD_SHARED_LIBS: OFF
-- QJS_BUILD_EXAMPLES: OFF
-- QJS_BUILD_CLI_STATIC: OFF
-- QJS_BUILD_CLI_WITH_MIMALLOC: OFF
-- QJS_BUILD_CLI_WITH_STATIC_MIMALLOC: OFF
-- QJS_ENABLE_ASAN: OFF
-- QJS_ENABLE_MSAN: OFF
-- QJS_ENABLE_TSAN: OFF
-- QJS_ENABLE_UBSAN: OFF
-- QJS_BUILD_LIBC: OFF
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Configuring done (8.8s)
-- Generating done (0.0s)
-- Build files have been written to: D:/cpp/quickjs-0.9.0/build
cmake --build build -j 16
[22/22] Linking C executable function_source.exendy@HP66G5 MINGW64 /d/cpp/quickjs-0.9.0
$ make install
cmake --build build -j 16
ninja: no work to do.
cmake --build build --target qjsc -j 16
ninja: no work to do.
cmake --build build --target install
[0/1] Install the project...-- Install configuration: "Release"
-- Installing: D:/msys64/usr/local/include/quickjs.h
-- Installing: D:/msys64/usr/local/bin/qjs.exe
-- Installing: D:/msys64/usr/local/bin/qjsc.exe
-- Installing: D:/msys64/usr/local/lib/libqjs.a
-- Installing: D:/msys64/usr/local/lib/cmake/quickjs/qjsConfig.cmake
-- Installing: D:/msys64/usr/local/lib/cmake/quickjs/qjsConfig-release.cmake
-- Installing: D:/msys64/usr/local/share/doc/quickjs/LICENSE
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/fib.c
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/fib_module.js
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/hello.js
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/hello_module.js
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/meson.build
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/pi_bigint.js
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/point.c
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/test_fib.js
-- Installing: D:/msys64/usr/local/share/doc/quickjs/examples/test_point.js
这就完事了。