- LLVM >= 11
- Nodejs >= 11.15
- Ninja >= 1.10 安装目录需要添加至系统 PATH 环境变量
npm i -g smake
- macOS 下编译 macOS
- macOS 下编译 Linux
- macOS 下编译 Windows
- Windows 下编译 macOS
- Windows 下编译 Linux
- Windows 下编译 Windows
所有路径在 Windows 下请使用 / 代替 \ 。如:C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.28.29910
# LLVM 可执行文件目录前缀。
# 如果已在 PATH 中可以不设置。
export SMAKE_LLVM_PREFIX="/opt/homebrew/opt/llvm/bin/"
# Clang 目录
# 仅在 useClangHeaders = true 时需要
export SMAKE_LLVM_CLANG_PATH="/opt/homebrew/opt/llvm/lib/clang/11.1.0"
Windows SDK 设置
# _MVC_VER 版本号
export SMAKE_LLVM_MSVC_VERSION=1928
# Windows Kits 10 版本号
export SMAKE_LLVM_WINDOWS_KITS_10_VERSION=10.0.19041.0
# MSVC 目录
export SMAKE_LLVM_MSVC_PATH="/opt/sysroots/win32/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.28.29910"
# Windows Kits 10 目录
export SMAKE_LLVM_WINDOWS_KITS_10_PATH="/opt/sysroots/win32/Program Files (x86)/Windows Kits/10"
Linux SDK 设置
# 规则为设置 SMAKE_LLVM_SYSROOT_${编译目标大写} 至 sysroot 目录
# aarch64-linux-gnu
export SMAKE_LLVM_SYSROOT_AARCH64_LINUX_GNU=/opt/sysroots/ubuntu14.04-aarch64-linux-gnu
# x86_64-linux-gnu
export SMAKE_LLVM_SYSROOT_X86_64_LINUX_GNU=/opt/sysroots/ubuntu14.04-x86_64-linux-gnu
# arm-linux-gnueabihf
export SMAKE_LLVM_SYSROOT_ARM_LINUX_GNUEABIHF=/opt/sysroots/ubuntu14.04-arm-linux-gnueabihf
# 使用淘宝镜像
export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node
- 在项目目录下创建
package.json
文件。 - 安装项目依赖
npm i -D smake
- 在项目目录下创建
xmake.js
文件。
Linux
const { LLVM_Linux } = require('smake');
class linux_executable extends LLVM_Linux {
target = 'aarch-linux-gnu';
files = ['src/main.c'];
}
module.exports = {
targets: [
linux_executable,
],
};
运行 smake build
编译。
Windows
const { LLVM_Win32 } = require('smake');
class win32_executable extends LLVM_Win32 {
files = ['src/main.c'];
}
module.exports = {
targets: [
win32_executable,
],
};
运行 smake build
编译。
macOS
const { LLVM_Darwin } = require('smake');
class darwin_executable extends LLVM_Darwin {
ARCH = 'arm64';
files = ['src/main.c'];
}
module.exports = {
targets: [
darwin_executable,
],
};
运行 smake build
编译。
更多请查看 examples
目录。