日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python configuration is still_通过Python配置关闭Release优化

發布時間:2025/4/16 python 18 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python configuration is still_通过Python配置关闭Release优化 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

通過自己之前轉載的一篇文章,《VS設置增量編譯》,在此基礎上增加了Release版本如何關閉優化并自動生成pdb文件,最終實現思路也比較簡單,就用Python自帶的ElementTree庫讀寫vcxproj文件,廢話不多說,直接上代碼:

import xml

from xml.etree.ElementTree import ElementTree, Element

xml.etree.ElementTree.register_namespace('', 'http://schemas.microsoft.com/developer/msbuild/2003')

def read_xml(in_path):

'''''讀取并解析xml文件

in_path: xml路徑

return: ElementTree'''

tree = ElementTree()

tree.parse(in_path)

return tree

def write_xml(tree, out_path):

'''''將xml文件寫出

tree: xml樹

out_path: 寫出路徑'''

tree.write(out_path, encoding="utf-8", xml_declaration=True)

def if_match(node, kv_map):

'''''判斷某個節點是否包含所有傳入參數屬性

node: 節點

kv_map: 屬性及屬性值組成的map'''

for key in kv_map:

if node.get(key) != kv_map.get(key):

return False

return True

# ----------------search -----------------

def find_nodes(tree, path, namespace=None):

'''''查找某個路徑匹配的所有節點

tree: xml樹

path: 節點路徑'''

return tree.findall(path, namespace)

def get_node_by_keyvalue(nodelist, kv_map):

'''''根據屬性及屬性值定位符合的節點,返回節點

nodelist: 節點列表

kv_map: 匹配屬性及屬性值map'''

result_nodes = []

for node in nodelist:

if if_match(node, kv_map):

result_nodes.append(node)

return result_nodes

# ---------------change ----------------------

def change_node_properties(nodelist, kv_map, is_delete=False):

'''修改/增加 /刪除 節點的屬性及屬性值

nodelist: 節點列表

kv_map:屬性及屬性值map'''

for node in nodelist:

for key in kv_map:

if is_delete:

if key in node.attrib:

del node.attrib[key]

else:

node.set(key, kv_map.get(key))

def change_node_text(nodelist, text, is_add=False, is_delete=False):

'''''改變/增加/刪除一個節點的文本

nodelist:節點列表

text : 更新后的文本'''

for node in nodelist:

if is_add:

node.text += text

elif is_delete:

node.text = ""

else:

node.text = text

def create_node(tag, property_map, content):

'''新造一個節點

tag:節點標簽

property_map:屬性及屬性值map

content: 節點閉合標簽里的文本內容

return 新節點'''

element = Element(tag, property_map)

element.text = content

return element

def add_child_node(nodelist, element):

'''''給一個節點添加子節點

nodelist: 節點列表

element: 子節點'''

for node in nodelist:

node.append(element)

def del_node_by_tagkeyvalue(nodelist, tag, kv_map):

'''''同過屬性及屬性值定位一個節點,并刪除之

nodelist: 父節點列表

tag:子節點標簽

kv_map: 屬性及屬性值列表'''

for parent_node in nodelist:

children = parent_node.getchildren()

for child in children:

if child.tag == tag and if_match(child, kv_map):

parent_node.remove(child)

if __name__ == "__main__":

################ 1. 讀取xml文件 ##########

vcxproj_file = input("input vcxproj file full path:")

choice = input("1. change output path to ..\\bin\\win64_vc12_$(Configuration)\\ \n"

"2. release disable optimization and generate pdb file \n"

"3. restore release default configuriton \n")

tree = read_xml(vcxproj_file)

################ 2. 屬性修改 ###############

if '1' == choice:

root = tree.getroot() # 找到父節點

outdir_node = create_node("OutDir", {}, "..\\bin\\win64_vc12_$(Configuration)\\")

outdir_node.tail = '\n\t'

property_group = create_node("PropertyGroup", {}, "")

property_group.tail = '\n\t'

property_group.append(outdir_node)

root.append(property_group)

elif '2' == choice:

# release 啟用增量編譯

linkincremental_node = find_nodes(tree, "PropertyGroup/LinkIncremental"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

release_x64_link_node = get_node_by_keyvalue( \

linkincremental_node, \

{"Condition": "'$(Configuration)|$(Platform)'=='Release|x64'"})

change_node_text(release_x64_link_node, "true")

# release 是否生成調試信息

itemdefinitiongroup_node = find_nodes(tree, "ItemDefinitionGroup"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

release_x64_node = get_node_by_keyvalue( \

itemdefinitiongroup_node, \

{"Condition": "'$(Configuration)|$(Platform)'=='Release|x64'"})

clcompile_node = find_nodes(release_x64_node[0], "ClCompile"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

if clcompile_node is None:

print("can't find clcompile_release_x64_node")

exit(-1)

debuginformationformat_node = find_nodes(clcompile_node[0], \

"DebugInformationFormat", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

change_node_text(debuginformationformat_node, "ProgramDatabase")

optimization_node = find_nodes(clcompile_node[0], \

"Optimization", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

change_node_text(optimization_node, "Disabled")

debuginformationformat_node = find_nodes(clcompile_node[0], \

"DebugInformationFormat", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

minimalrebuild_node = create_node("MinimalRebuild", {}, "true")

minimalrebuild_node.tail ='\n\t'

clcompile_node[0].append(minimalrebuild_node)

link_node = find_nodes(release_x64_node[0], "Link"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

generatedebuginformation_node = find_nodes(link_node[0], \

"GenerateDebugInformation", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

change_node_text(generatedebuginformation_node, "true")

elif '3' == choice:

# release 啟用增量編譯

linkincremental_node = find_nodes(tree, "PropertyGroup/LinkIncremental"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

release_x64_link_node = get_node_by_keyvalue( \

linkincremental_node, \

{"Condition": "'$(Configuration)|$(Platform)'=='Release|x64'"})

change_node_text(release_x64_link_node, "false")

# release 是否生成調試信息

itemdefinitiongroup_node = find_nodes(tree, "ItemDefinitionGroup"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

release_x64_node = get_node_by_keyvalue( \

itemdefinitiongroup_node, \

{"Condition": "'$(Configuration)|$(Platform)'=='Release|x64'"})

clcompile_node = find_nodes(release_x64_node[0], "ClCompile"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

if clcompile_node is None:

print("can't find clcompile_release_x64_node")

exit(-1)

debuginformationformat_node = find_nodes(clcompile_node[0], \

"DebugInformationFormat", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

change_node_text(debuginformationformat_node, "None")

optimization_node = find_nodes(clcompile_node[0], \

"Optimization", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

change_node_text(optimization_node, "MaxSpeed")

minimalrebuild_node = find_nodes(clcompile_node[0], \

"MinimalRebuild", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

change_node_text(minimalrebuild_node, "False")

link_node = find_nodes(release_x64_node[0], "Link"

, {"": "http://schemas.microsoft.com/developer/msbuild/2003"})

generatedebuginformation_node = find_nodes(link_node[0], \

"GenerateDebugInformation", \

{"": "http://schemas.microsoft.com/developer/msbuild/2003"})

change_node_text(generatedebuginformation_node, "false")

write_xml(tree, vcxproj_file)

總結

以上是生活随笔為你收集整理的python configuration is still_通过Python配置关闭Release优化的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。