l0n0lc 0.9.6__tar.gz → 0.9.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/PKG-INFO +1 -1
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc//347/274/226/350/257/221.py +3 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc.egg-info/PKG-INFO +1 -1
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/pyproject.toml +1 -1
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/LICENSE +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/README.md +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc/StdList.py +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc/StdMap.py +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc/__init__.py +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc/c/345/237/272/347/241/200/345/244/204/347/220/206.py" +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc/jit.py +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc//351/200/232/347/224/250.py" +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc.egg-info/SOURCES.txt +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc.egg-info/dependency_links.txt +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/l0n0lc.egg-info/top_level.txt +0 -0
- {l0n0lc-0.9.6 → l0n0lc-0.9.7}/setup.cfg +0 -0
@@ -9,6 +9,7 @@ class cpp编译器:
|
|
9
9
|
self.库目录列表 = []
|
10
10
|
self.链接库 = []
|
11
11
|
self.编译选项 = []
|
12
|
+
self.输出编译指令 = False
|
12
13
|
|
13
14
|
def 设置编译器(self, 编译器地址: str):
|
14
15
|
self.编译器 = 编译器地址
|
@@ -49,6 +50,8 @@ class cpp编译器:
|
|
49
50
|
编译指令.append(文件路径)
|
50
51
|
编译指令.append('-o')
|
51
52
|
编译指令.append(输出路径)
|
53
|
+
if self.输出编译指令:
|
54
|
+
print(编译指令)
|
52
55
|
subprocess.run(编译指令)
|
53
56
|
|
54
57
|
def 编译为动态库(self, 文件路径: Union[List[str], str], 输出路径: str):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|