use template.cproject if it exists
This commit is contained in:
parent
02a2670f98
commit
822e825c8f
|
@ -3,6 +3,7 @@ import re
|
||||||
from string import Template
|
from string import Template
|
||||||
|
|
||||||
import rtconfig
|
import rtconfig
|
||||||
|
import shutil
|
||||||
|
|
||||||
cproject_temp = """<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
cproject_temp = """<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
||||||
|
@ -272,42 +273,50 @@ def gen_org_eclipse_core_runtime_prefs(output_file_path):
|
||||||
|
|
||||||
|
|
||||||
def gen_cproject_file(output_file_path):
|
def gen_cproject_file(output_file_path):
|
||||||
CFLAGS = rtconfig.CFLAGS
|
template_file_path = os.path.join(os.path.dirname(output_file_path),"template.cproject")
|
||||||
AFLAGS = rtconfig.AFLAGS
|
if os.path.exists(template_file_path):
|
||||||
LFLAGS = rtconfig.LFLAGS
|
try:
|
||||||
if 'CXXFLAGS' in dir(rtconfig):
|
shutil.copy(template_file_path, output_file_path)
|
||||||
CXXFLAGS = rtconfig.CXXFLAGS
|
except Exception as e:
|
||||||
else:
|
print(e)
|
||||||
CXXFLAGS = ""
|
return True
|
||||||
|
else:
|
||||||
|
CFLAGS = rtconfig.CFLAGS
|
||||||
|
AFLAGS = rtconfig.AFLAGS
|
||||||
|
LFLAGS = rtconfig.LFLAGS
|
||||||
|
if 'CXXFLAGS' in dir(rtconfig):
|
||||||
|
CXXFLAGS = rtconfig.CXXFLAGS
|
||||||
|
else:
|
||||||
|
CXXFLAGS = ""
|
||||||
|
|
||||||
if "-T" in LFLAGS:
|
if "-T" in LFLAGS:
|
||||||
items = str(LFLAGS).split()
|
items = str(LFLAGS).split()
|
||||||
t_index = items.index("-T")
|
t_index = items.index("-T")
|
||||||
items[t_index] = ""
|
items[t_index] = ""
|
||||||
items[t_index + 1] = ""
|
items[t_index + 1] = ""
|
||||||
LFLAGS = " ".join(items)
|
LFLAGS = " ".join(items)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
w_str = cproject_temp
|
w_str = cproject_temp
|
||||||
if "a_misc_flag" in w_str:
|
if "a_misc_flag" in w_str:
|
||||||
w_str = w_str.replace("a_misc_flag", AFLAGS)
|
w_str = w_str.replace("a_misc_flag", AFLAGS)
|
||||||
if "c_misc_flag" in w_str:
|
if "c_misc_flag" in w_str:
|
||||||
w_str = w_str.replace("c_misc_flag", CFLAGS)
|
w_str = w_str.replace("c_misc_flag", CFLAGS)
|
||||||
if "cpp_misc_flag" in w_str:
|
if "cpp_misc_flag" in w_str:
|
||||||
w_str = w_str.replace("cpp_misc_flag", CXXFLAGS)
|
w_str = w_str.replace("cpp_misc_flag", CXXFLAGS)
|
||||||
if "c_link_misc_flag" in w_str:
|
if "c_link_misc_flag" in w_str:
|
||||||
w_str = w_str.replace("c_link_misc_flag", LFLAGS)
|
w_str = w_str.replace("c_link_misc_flag", LFLAGS)
|
||||||
if "cpp_link_misc_flag" in w_str:
|
if "cpp_link_misc_flag" in w_str:
|
||||||
w_str = w_str.replace("cpp_link_misc_flag", LFLAGS)
|
w_str = w_str.replace("cpp_link_misc_flag", LFLAGS)
|
||||||
|
|
||||||
dir_name = os.path.dirname(output_file_path)
|
dir_name = os.path.dirname(output_file_path)
|
||||||
if not os.path.exists(dir_name):
|
if not os.path.exists(dir_name):
|
||||||
os.makedirs(dir_name)
|
os.makedirs(dir_name)
|
||||||
with open(output_file_path, 'w') as f:
|
with open(output_file_path, 'w') as f:
|
||||||
f.write(w_str)
|
f.write(w_str)
|
||||||
return True
|
return True
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def gen_project_file(output_file_path):
|
def gen_project_file(output_file_path):
|
||||||
|
|
Loading…
Reference in New Issue