Manages build options and configurations for one run
"""
- def __init__(self):
+ def __init__(self, debug, debug_domains):
setattr(self, "data", {})
setattr(self, "file", [])
setattr(self, "cmd", None)
setattr(self, "dump_signatures", True)
+ setattr(self, "debug", debug)
+ setattr(self, "debug_domains", debug_domains)
_warnings_showwarning = warnings.showwarning
def _showwarning(message, category, filename, lineno, file=None, line=None):
bb.event.worker_pid = os.getpid()
bb.event.useStdout = False
-import bb.cooker
-
-cooker = bb.cooker.BBCooker(BBConfiguration(), None)
hashfile = sys.argv[1]
buildfile = sys.argv[2]
taskname = sys.argv[3]
+import bb.cooker
+
+p = pickle.Unpickler(file(hashfile, "rb"))
+hashdata = p.load()
+
+debug = hashdata["msg-debug"]
+debug_domains = hashdata["msg-debug-domains"]
+cooker = bb.cooker.BBCooker(BBConfiguration(debug, debug_domains), None)
+
cooker.parseConfiguration()
cooker.bb_cache = bb.cache.init(cooker)
if taskname.endswith("_setscene"):
the_data.setVarFlag(taskname, "quieterrors", "1")
-p = pickle.Unpickler(file(hashfile, "rb"))
-hashdata = p.load()
-
bb.parse.siggen.set_taskdata(hashdata["hashes"], hashdata["deps"])
for h in hashdata["hashes"]:
deps.append(self.taskData.fn_index[self.runq_fnid[dep]] + "." + self.runq_task[dep])
hashdata["deps"][self.taskData.fn_index[self.runq_fnid[task]] + "." + self.runq_task[task]] = deps
+ hashdata["msg-debug"] = self.cooker.configuration.debug
+ hashdata["msg-debug-domains"] = self.cooker.configuration.debug_domains
+
# Write out the hashes into a file for use by the individual tasks
self.hashfile = bb.data.expand("${TMPDIR}/cache/hashdata.dat", self.cooker.configuration.data)
p = pickle.Pickler(file(self.hashfile, "wb"), -1)