mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
import {CompilationEnvironment} from '../compilation-env.js';
|
|
|
|
export class LibSegFaultHelper {
|
|
public static isSupported(compiler: CompilationEnvironment) {
|
|
return process.platform !== 'win32' && compiler.ceProps('libSegFaultPath', '') !== '';
|
|
}
|
|
}
|