def _create_compile_conf_taskgen(conf, name, body, headers, extension=".c"): if headers: head = "\n".join(["#include <%s>" % h for h in headers]) else: head = "" code = "\n".join([c for c in [head, body]]) sources = [create_file(conf, code, name, extension)] task_gen = CompiledTaskGen("conf", conf, sources, name) task_gen.env.update(copy.deepcopy(conf.env)) apply_cpppath(task_gen) tasks = task_gen.process() conf.last_task = tasks[-1] for t in tasks: t.disable_output = True t.log = conf.log succeed = False explanation = None try: run_tasks(conf, tasks) succeed = True except TaskRunFailure, e: explanation = unicode(e).encode("utf-8")
def ccompile(self, name, sources, env=None): task_gen = CompiledTaskGen("cxccompile", self.ctx, sources, name) task_gen.env = _merge_env(self.env, env) apply_cpppath(task_gen) tasks = task_gen.process() for t in tasks: t.env = task_gen.env self.ctx.tasks.extend(tasks) outputs = [] for t in tasks: outputs.extend(t.outputs) return outputs
def ccompile(self, name, sources, env=None): task_gen = CompiledTaskGen("cxccompile", self.ctx, sources, name) task_gen.env = yaku.tools._merge_env(self.env, env) apply_define(task_gen) apply_cpppath(task_gen) tasks = task_gen.process() for t in tasks: t.env = task_gen.env self.ctx.tasks.extend(tasks) outputs = [] for t in tasks: outputs.extend(t.outputs) return outputs
def program(self, name, sources, env=None): sources = [self.ctx.src_root.find_resource(s) for s in sources] task_gen = CompiledTaskGen("cxxprogram", self.ctx, sources, name) task_gen.env = _merge_env(self.env, env) apply_cpppath(task_gen) apply_libdir(task_gen) apply_libs(task_gen) tasks = task_gen.process() ltask = cxxprogram_task(task_gen, name) tasks.extend(ltask) for t in tasks: t.env = task_gen.env self.ctx.tasks.extend(tasks) self.link_task = ltask outputs = [] for t in ltask: outputs.extend(t.outputs) return outputs
def program(self, name, sources, env=None): sources = [self.ctx.src_root.find_resource(s) for s in sources] task_gen = CompiledTaskGen("cxxprogram", self.ctx, sources, name) task_gen.env = yaku.tools._merge_env(self.env, env) apply_define(task_gen) apply_cpppath(task_gen) apply_libdir(task_gen) apply_libs(task_gen) tasks = task_gen.process() ltask = cxxprogram_task(task_gen, name) tasks.extend(ltask) for t in tasks: t.env = task_gen.env self.ctx.tasks.extend(tasks) self.link_task = ltask outputs = [] for t in ltask: outputs.extend(t.outputs) return outputs