338 lines
12 KiB
JavaScript
338 lines
12 KiB
JavaScript
|
|
"use strict";
|
||
|
|
// prettier-ignore
|
||
|
|
/* eslint-disable */
|
||
|
|
/* auto-generated by NAPI-RS */
|
||
|
|
const { existsSync, readFileSync } = require('fs');
|
||
|
|
const { join } = require('path');
|
||
|
|
const { platform, arch } = process;
|
||
|
|
let nativeBinding = null;
|
||
|
|
let localFileExisted = false;
|
||
|
|
let loadError = null;
|
||
|
|
const isMusl = () => {
|
||
|
|
let musl = false;
|
||
|
|
if (process.platform === 'linux') {
|
||
|
|
musl = isMuslFromFilesystem();
|
||
|
|
if (musl === null) {
|
||
|
|
musl = isMuslFromReport();
|
||
|
|
}
|
||
|
|
if (musl === null) {
|
||
|
|
musl = isMuslFromChildProcess();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return musl;
|
||
|
|
};
|
||
|
|
const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-');
|
||
|
|
const isMuslFromFilesystem = () => {
|
||
|
|
try {
|
||
|
|
return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl');
|
||
|
|
}
|
||
|
|
catch (_a) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
const isMuslFromReport = () => {
|
||
|
|
const report = typeof process.report.getReport === 'function' ? process.report.getReport() : null;
|
||
|
|
if (!report) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
if (report.header && report.header.glibcVersionRuntime) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
if (Array.isArray(report.sharedObjects)) {
|
||
|
|
if (report.sharedObjects.some(isFileMusl)) {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return false;
|
||
|
|
};
|
||
|
|
const isMuslFromChildProcess = () => {
|
||
|
|
try {
|
||
|
|
return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl');
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
// If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
switch (platform) {
|
||
|
|
case 'android':
|
||
|
|
switch (arch) {
|
||
|
|
case 'arm64':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.android-arm64.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.android-arm64.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-android-arm64');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'arm':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.android-arm-eabi.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.android-arm-eabi.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-android-arm-eabi');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
default:
|
||
|
|
throw new Error(`Unsupported architecture on Android ${arch}`);
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'win32':
|
||
|
|
switch (arch) {
|
||
|
|
case 'x64':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.win32-x64-msvc.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.win32-x64-msvc.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-win32-x64-msvc');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'ia32':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.win32-ia32-msvc.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.win32-ia32-msvc.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-win32-ia32-msvc');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'arm64':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.win32-arm64-msvc.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.win32-arm64-msvc.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-win32-arm64-msvc');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
default:
|
||
|
|
throw new Error(`Unsupported architecture on Windows: ${arch}`);
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'darwin':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.darwin-universal.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.darwin-universal.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-darwin-universal');
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
catch (_a) { }
|
||
|
|
switch (arch) {
|
||
|
|
case 'x64':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.darwin-x64.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.darwin-x64.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-darwin-x64');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'arm64':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.darwin-arm64.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.darwin-arm64.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-darwin-arm64');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
default:
|
||
|
|
throw new Error(`Unsupported architecture on macOS: ${arch}`);
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'freebsd':
|
||
|
|
if (arch !== 'x64') {
|
||
|
|
throw new Error(`Unsupported architecture on FreeBSD: ${arch}`);
|
||
|
|
}
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.freebsd-x64.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.freebsd-x64.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-freebsd-x64');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'linux':
|
||
|
|
switch (arch) {
|
||
|
|
case 'x64':
|
||
|
|
if (isMusl()) {
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.linux-x64-musl.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.linux-x64-musl.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-linux-x64-musl');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.linux-x64-gnu.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.linux-x64-gnu.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-linux-x64-gnu');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'arm64':
|
||
|
|
if (isMusl()) {
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.linux-arm64-musl.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.linux-arm64-musl.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-linux-arm64-musl');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.linux-arm64-gnu.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.linux-arm64-gnu.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-linux-arm64-gnu');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'arm':
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.linux-arm-gnueabihf.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.linux-arm-gnueabihf.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-linux-arm-gnueabihf');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
case 'riscv64':
|
||
|
|
if (isMusl()) {
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.linux-riscv64-musl.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.linux-riscv64-musl.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-linux-riscv64-musl');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
localFileExisted = existsSync(join(__dirname, 'swc.linux-riscv64-gnu.node'));
|
||
|
|
try {
|
||
|
|
if (localFileExisted) {
|
||
|
|
nativeBinding = require('./swc.linux-riscv64-gnu.node');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
nativeBinding = require('@swc/core-linux-riscv64-gnu');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
loadError = e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
default:
|
||
|
|
throw new Error(`Unsupported architecture on Linux: ${arch}`);
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
default:
|
||
|
|
throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`);
|
||
|
|
}
|
||
|
|
if (!nativeBinding) {
|
||
|
|
if (loadError) {
|
||
|
|
throw loadError;
|
||
|
|
}
|
||
|
|
throw new Error(`Failed to load native binding`);
|
||
|
|
}
|
||
|
|
module.exports.Compiler = nativeBinding.Compiler;
|
||
|
|
module.exports.JsCompiler = nativeBinding.JsCompiler;
|
||
|
|
module.exports.bundle = nativeBinding.bundle;
|
||
|
|
module.exports.getTargetTriple = nativeBinding.getTargetTriple;
|
||
|
|
module.exports.initCustomTraceSubscriber = nativeBinding.initCustomTraceSubscriber;
|
||
|
|
module.exports.minify = nativeBinding.minify;
|
||
|
|
module.exports.minifySync = nativeBinding.minifySync;
|
||
|
|
module.exports.parse = nativeBinding.parse;
|
||
|
|
module.exports.parseFile = nativeBinding.parseFile;
|
||
|
|
module.exports.parseFileSync = nativeBinding.parseFileSync;
|
||
|
|
module.exports.parseSync = nativeBinding.parseSync;
|
||
|
|
module.exports.print = nativeBinding.print;
|
||
|
|
module.exports.printSync = nativeBinding.printSync;
|
||
|
|
module.exports.transform = nativeBinding.transform;
|
||
|
|
module.exports.transformFile = nativeBinding.transformFile;
|
||
|
|
module.exports.transformFileSync = nativeBinding.transformFileSync;
|
||
|
|
module.exports.transformSync = nativeBinding.transformSync;
|