10 lines
306 B
TypeScript
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())
|