|
|
|
@ -144,6 +144,7 @@ function clientOptionsHandler(compilers, fileSources) {
|
|
|
|
|
defaultCompiler: compilerProps('defaultCompiler', ''),
|
|
|
|
|
compileOptions: compilerProps("options"),
|
|
|
|
|
supportsBinary: !!compilerProps("supportsBinary"),
|
|
|
|
|
postProcess: compilerProps("postProcess"),
|
|
|
|
|
sources: sources
|
|
|
|
|
};
|
|
|
|
|
var text = JSON.stringify(options);
|
|
|
|
@ -282,7 +283,8 @@ function configuredCompilers() {
|
|
|
|
|
is6g: !!props("is6g", false),
|
|
|
|
|
intelAsm: props("intelAsm", ""),
|
|
|
|
|
needsMulti: !!props("needsMulti", true),
|
|
|
|
|
supportsBinary: !!props("supportsBinary", true)
|
|
|
|
|
supportsBinary: !!props("supportsBinary", true),
|
|
|
|
|
postProcess: props("postProcess", "")
|
|
|
|
|
});
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|