148 lines
4.5 KiB
Python
148 lines
4.5 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
##
|
|
## @author Edouard DUPIN
|
|
##
|
|
## @copyright 2012, Edouard DUPIN, all right reserved
|
|
##
|
|
## @license MPL v2.0 (see license file)
|
|
##
|
|
|
|
##
|
|
## Objective C++ builder
|
|
##
|
|
from lutin import multiprocess
|
|
from lutin import tools
|
|
from lutin import builder
|
|
from realog import debug
|
|
from lutin import depend
|
|
from lutin import env
|
|
|
|
local_ref_on_builder_cpp = None
|
|
|
|
##
|
|
## Initialize the builder, if needed ... to get dependency between builder (for example)
|
|
##
|
|
def init():
|
|
global local_ref_on_builder_cpp
|
|
debug.debug("mm builder get dependency on the CPP builder")
|
|
local_ref_on_builder_cpp = builder.get_builder("cpp")
|
|
|
|
##
|
|
## Get the current builder type.
|
|
## Return the type of builder
|
|
##
|
|
def get_type():
|
|
return "compiler"
|
|
|
|
##
|
|
## @brief Get builder input file type
|
|
## @return List of extention supported
|
|
##
|
|
def get_input_type():
|
|
return ["mm", "MM"]
|
|
|
|
##
|
|
## @brief Get builder output file type
|
|
## @return List of extention supported
|
|
##
|
|
def get_output_type():
|
|
return ["o"]
|
|
|
|
##
|
|
## @brief Get builder support multi-threading or not
|
|
## @return True Multithreading supported
|
|
## @return False Multithreading NOT supported
|
|
##
|
|
def get_support_multithreading():
|
|
return True
|
|
|
|
##
|
|
## @brief Commands for running gcc to compile a m++ file in object file.
|
|
##
|
|
def compile(file, binary, target, depancy, flags, path, name, basic_path, module_src):
|
|
file_src = target.get_full_name_source(basic_path, file)
|
|
file_cmd = target.get_full_name_cmd(name, basic_path, file)
|
|
file_dst = target.get_full_name_destination(name, basic_path, file, get_output_type())
|
|
file_depend = target.get_full_dependency(name, basic_path, file)
|
|
file_warning = target.get_full_name_warning(name, basic_path, file)
|
|
# set ccache interface:
|
|
compilator_ccache = ""
|
|
if env.get_ccache() == True:
|
|
compilator_ccache = "ccache"
|
|
# create the command line befor requesting start:
|
|
cmd = [
|
|
compilator_ccache,
|
|
target.xx,
|
|
"-o", file_dst,
|
|
target.arch,
|
|
target.sysroot,
|
|
target.global_include_cc]
|
|
for view in ["export", "local"]:
|
|
for type in ["c", "c++", "m", "mm"]:
|
|
try:
|
|
cmd.append(tools.add_prefix("-I",path[view][type]))
|
|
except:
|
|
pass
|
|
for type in ["c", "c++", "m", "mm"]:
|
|
try:
|
|
cmd.append(tools.add_prefix("-I",depancy.path[type]))
|
|
except:
|
|
pass
|
|
try:
|
|
cmd.append(local_ref_on_builder_cpp.get_version_compilation_flags(flags, depancy.flags))
|
|
except:
|
|
pass
|
|
list_flags = [];
|
|
if "c" in target.global_flags:
|
|
list_flags.append(target.global_flags["c"])
|
|
if "c++" in target.global_flags:
|
|
list_flags.append(target.global_flags["c++"])
|
|
if "m" in target.global_flags:
|
|
list_flags.append(target.global_flags["m"])
|
|
if "mm" in target.global_flags:
|
|
list_flags.append(target.global_flags["mm"])
|
|
for type in ["c", "c++", "m", "mm"]:
|
|
if type in depancy.flags:
|
|
list_flags.append(depancy.flags[type])
|
|
for view in ["local", "export"]:
|
|
if view in flags:
|
|
for type in ["c", "c++", "m", "mm"]:
|
|
if type in flags[view]:
|
|
list_flags.append(flags[view][type])
|
|
# get blacklist of flags
|
|
list_flags_blacklist = [];
|
|
if "c-remove" in target.global_flags:
|
|
list_flags_blacklist.append(target.global_flags["c-remove"])
|
|
if "c++-remove" in target.global_flags:
|
|
list_flags_blacklist.append(target.global_flags["c++-remove"])
|
|
if "m-remove" in target.global_flags:
|
|
list_flags_blacklist.append(target.global_flags["m-remove"])
|
|
if "mm-remove" in target.global_flags:
|
|
list_flags_blacklist.append(target.global_flags["mm-remove"])
|
|
for type in ["c-remove", "c++-remove","m-remove", "mm-remove"]:
|
|
if type in depancy.flags:
|
|
list_flags_blacklist.append(depancy.flags[type])
|
|
for view in ["local", "export"]:
|
|
if view in flags:
|
|
for type in ["c-remove", "c++-remove","m-remove", "mm-remove"]:
|
|
if type in flags[view]:
|
|
list_flags_blacklist.append(flags[view][type])
|
|
# apply blacklisting of data and add it on the cmdLine
|
|
clean_flags = tools.remove_element(list_flags, list_flags_blacklist)
|
|
#debug.warning("plop " + str(list_flags_blacklist) + " " + str(list_flags) + " --> " + str(clean_flags) )
|
|
cmd.append(clean_flags);
|
|
cmd.append("-c -MMD -MP")
|
|
cmd.append("-x objective-c++")
|
|
cmd.append(file_src)
|
|
# Create cmd line
|
|
cmdLine=tools.list_to_str(cmd)
|
|
# check the dependency for this file :
|
|
if False==depend.need_re_build(file_dst, file_src, file_depend, file_cmd, cmdLine):
|
|
return {"action":"add", "file":file_dst}
|
|
tools.create_directory_of_file(file_dst)
|
|
comment = ["m++", name, "<==", file]
|
|
#process element
|
|
multiprocess.run_in_pool(cmdLine, comment, file_cmd, store_output_file=file_warning)
|
|
return {"action":"add", "file":file_dst}
|