1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 23:41:32 +00:00

ca65: return listings if errors

This commit is contained in:
Steven Hugg 2022-02-19 11:35:30 -06:00
parent 349c45d7c0
commit 38920c6dce

View File

@ -1,7 +1,7 @@
import { getFilenamePrefix, getRootBasePlatform } from "../../common/util"; import { getFilenamePrefix, getRootBasePlatform } from "../../common/util";
import { CodeListingMap, WorkerError } from "../../common/workertypes"; import { CodeListingMap, WorkerError } from "../../common/workertypes";
import { re_crlf, BuildStepResult, anyTargetChanged, execMain, gatherFiles, msvcErrorMatcher, populateEntry, populateExtraFiles, populateFiles, print_fn, putWorkFile, setupFS, staleFiles, BuildStep, emglobal, loadNative, moduleInstFn, fixParamsWithDefines, store, makeErrorMatcher } from "../workermain"; import { re_crlf, BuildStepResult, anyTargetChanged, execMain, gatherFiles, msvcErrorMatcher, populateEntry, populateExtraFiles, populateFiles, print_fn, putWorkFile, setupFS, staleFiles, BuildStep, emglobal, loadNative, moduleInstFn, fixParamsWithDefines, store, makeErrorMatcher, getWorkFileAsString } from "../workermain";
import { EmscriptenModule } from "../workermain" import { EmscriptenModule } from "../workermain"
@ -128,8 +128,12 @@ export function assembleCA65(step: BuildStep): BuildStepResult {
args.unshift.apply(args, ["-D", "__MAIN__=1"]); args.unshift.apply(args, ["-D", "__MAIN__=1"]);
} }
execMain(step, CA65, args); execMain(step, CA65, args);
if (errors.length) if (errors.length) {
return { errors: errors }; // TODO?
let listings : CodeListingMap = {};
listings[step.path] = { lines:[], text:getWorkFileAsString(step.path) };
return { errors, listings };
}
objout = FS.readFile(objpath, { encoding: 'binary' }); objout = FS.readFile(objpath, { encoding: 'binary' });
lstout = FS.readFile(lstpath, { encoding: 'utf8' }); lstout = FS.readFile(lstpath, { encoding: 'utf8' });
putWorkFile(objpath, objout); putWorkFile(objpath, objout);