nmake/tests/test1/index.ts
2024-08-11 15:58:01 +08:00

10 lines
306 B
TypeScript

import { execSync } from "child_process";
import GppCompiler from "../../src/Compiler/GppCompiler";
(global as any).isDebug=true;
// const a = new GppCompiler()
// console.log(a.compilerVersion)
console.log(execSync("g++ -v").toLocaleString())
// console.log(execSync("g++ --version").toString().trim())