Skip to content

Commit 13221ba

Browse files
author
W01885
committed
C++嵌入python,相当于把python文件当作dll调用
0 parents  commit 13221ba

File tree

404 files changed

+2827
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404 files changed

+2827
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Debug|x64">
9+
<Configuration>Debug</Configuration>
10+
<Platform>x64</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Release|Win32">
13+
<Configuration>Release</Configuration>
14+
<Platform>Win32</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<ProjectGuid>{4ADA55D5-ECDE-475D-B42A-4B2D9B2E2258}</ProjectGuid>
23+
<Keyword>Win32Proj</Keyword>
24+
<RootNamespace>ConsoleApplication1</RootNamespace>
25+
</PropertyGroup>
26+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
28+
<ConfigurationType>Application</ConfigurationType>
29+
<UseDebugLibraries>true</UseDebugLibraries>
30+
<PlatformToolset>v120</PlatformToolset>
31+
<CharacterSet>Unicode</CharacterSet>
32+
</PropertyGroup>
33+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
34+
<ConfigurationType>Application</ConfigurationType>
35+
<UseDebugLibraries>true</UseDebugLibraries>
36+
<PlatformToolset>v120</PlatformToolset>
37+
<CharacterSet>Unicode</CharacterSet>
38+
</PropertyGroup>
39+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40+
<ConfigurationType>Application</ConfigurationType>
41+
<UseDebugLibraries>false</UseDebugLibraries>
42+
<PlatformToolset>v120</PlatformToolset>
43+
<WholeProgramOptimization>true</WholeProgramOptimization>
44+
<CharacterSet>Unicode</CharacterSet>
45+
</PropertyGroup>
46+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
47+
<ConfigurationType>Application</ConfigurationType>
48+
<UseDebugLibraries>false</UseDebugLibraries>
49+
<PlatformToolset>v120</PlatformToolset>
50+
<WholeProgramOptimization>true</WholeProgramOptimization>
51+
<CharacterSet>Unicode</CharacterSet>
52+
</PropertyGroup>
53+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
54+
<ImportGroup Label="ExtensionSettings">
55+
</ImportGroup>
56+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
57+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
58+
</ImportGroup>
59+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
60+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
61+
</ImportGroup>
62+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
63+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64+
</ImportGroup>
65+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
66+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
67+
</ImportGroup>
68+
<PropertyGroup Label="UserMacros" />
69+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
70+
<LinkIncremental>true</LinkIncremental>
71+
<IncludePath>C:\Program Files\Python36\include;$(IncludePath)</IncludePath>
72+
<LibraryPath>C:\Program Files\Python36\libs;$(LibraryPath)</LibraryPath>
73+
</PropertyGroup>
74+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
75+
<LinkIncremental>true</LinkIncremental>
76+
<IncludePath>C:\Program Files\Python36\include;$(IncludePath)</IncludePath>
77+
<LibraryPath>C:\Program Files\Python36\libs;$(LibraryPath)</LibraryPath>
78+
</PropertyGroup>
79+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
80+
<LinkIncremental>false</LinkIncremental>
81+
<IncludePath>C:\Program Files\Python36\include;$(IncludePath)</IncludePath>
82+
<LibraryPath>C:\Program Files\Python36\libs;$(LibraryPath)</LibraryPath>
83+
</PropertyGroup>
84+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
85+
<LinkIncremental>false</LinkIncremental>
86+
<IncludePath>C:\Program Files\Python36\include;$(IncludePath)</IncludePath>
87+
<LibraryPath>C:\Program Files\Python36\libs;$(LibraryPath)</LibraryPath>
88+
</PropertyGroup>
89+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
90+
<ClCompile>
91+
<PrecompiledHeader>
92+
</PrecompiledHeader>
93+
<WarningLevel>Level3</WarningLevel>
94+
<Optimization>Disabled</Optimization>
95+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
96+
<SDLCheck>true</SDLCheck>
97+
</ClCompile>
98+
<Link>
99+
<SubSystem>Console</SubSystem>
100+
<GenerateDebugInformation>true</GenerateDebugInformation>
101+
</Link>
102+
</ItemDefinitionGroup>
103+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
104+
<ClCompile>
105+
<PrecompiledHeader>
106+
</PrecompiledHeader>
107+
<WarningLevel>Level3</WarningLevel>
108+
<Optimization>Disabled</Optimization>
109+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
110+
<SDLCheck>true</SDLCheck>
111+
</ClCompile>
112+
<Link>
113+
<SubSystem>Console</SubSystem>
114+
<GenerateDebugInformation>true</GenerateDebugInformation>
115+
</Link>
116+
</ItemDefinitionGroup>
117+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
118+
<ClCompile>
119+
<WarningLevel>Level3</WarningLevel>
120+
<PrecompiledHeader>
121+
</PrecompiledHeader>
122+
<Optimization>MaxSpeed</Optimization>
123+
<FunctionLevelLinking>true</FunctionLevelLinking>
124+
<IntrinsicFunctions>true</IntrinsicFunctions>
125+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
126+
<SDLCheck>true</SDLCheck>
127+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
128+
</ClCompile>
129+
<Link>
130+
<SubSystem>Console</SubSystem>
131+
<GenerateDebugInformation>true</GenerateDebugInformation>
132+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
133+
<OptimizeReferences>true</OptimizeReferences>
134+
</Link>
135+
</ItemDefinitionGroup>
136+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
137+
<ClCompile>
138+
<WarningLevel>Level3</WarningLevel>
139+
<PrecompiledHeader>
140+
</PrecompiledHeader>
141+
<Optimization>MaxSpeed</Optimization>
142+
<FunctionLevelLinking>true</FunctionLevelLinking>
143+
<IntrinsicFunctions>true</IntrinsicFunctions>
144+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
145+
<SDLCheck>true</SDLCheck>
146+
</ClCompile>
147+
<Link>
148+
<SubSystem>Console</SubSystem>
149+
<GenerateDebugInformation>true</GenerateDebugInformation>
150+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
151+
<OptimizeReferences>true</OptimizeReferences>
152+
</Link>
153+
</ItemDefinitionGroup>
154+
<ItemGroup>
155+
<ClCompile Include="源.cpp" />
156+
</ItemGroup>
157+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
158+
<ImportGroup Label="ExtensionTargets">
159+
</ImportGroup>
160+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="源文件">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="头文件">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="资源文件">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClCompile Include="源.cpp">
19+
<Filter>源文件</Filter>
20+
</ClCompile>
21+
</ItemGroup>
22+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup />
4+
</Project>
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
2+
Debug|Win32|F:\project\C++\embedPython\|
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��

ConsoleApplication1/Debug/ConsoleA.4ADA55D5.tlog/unsuccessfulbuild

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
生成启动时间为 2018/1/5 11:00:46。
2+
1>项目“F:\project\C++\embedPython\ConsoleApplication1\ConsoleApplication1.vcxproj”在节点 2 上(Rebuild 个目标)。
3+
1>ClCompile:
4+
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /sdl /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _LIB /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt "源.cpp"
5+
源.cpp
6+
1>f:\project\c++\embedpython\consoleapplication1\源.cpp(124): warning C4101: “tuple”: 未引用的局部变量
7+
Link:
8+
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"F:\project\C++\embedPython\Debug\ConsoleApplication1.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"F:\project\C++\embedPython\Debug\ConsoleApplication1.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"F:\project\C++\embedPython\Debug\ConsoleApplication1.lib" /MACHINE:X86 "Debug\源.obj"
9+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__PyObject_Str,该符号在函数 _main 中被引用
10+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__PyObject_GetAttrString,该符号在函数 _main 中被引用
11+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__PyCallable_Check,该符号在函数 _main 中被引用
12+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__PyUnicode_AsUTF8,该符号在函数 _main 中被引用
13+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__Py_BuildValue,该符号在函数 _main 中被引用
14+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__Py_Initialize,该符号在函数 _main 中被引用
15+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__Py_Finalize,该符号在函数 _main 中被引用
16+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__Py_IsInitialized,该符号在函数 _main 中被引用
17+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__PyImport_ImportModule,该符号在函数 _main 中被引用
18+
1>源.obj : error LNK2019: 无法解析的外部符号 __imp__PyObject_CallObject,该符号在函数 _main 中被引用
19+
1>F:\project\C++\embedPython\Debug\ConsoleApplication1.exe : fatal error LNK1120: 10 个无法解析的外部命令
20+
1>已完成生成项目“F:\project\C++\embedPython\ConsoleApplication1\ConsoleApplication1.vcxproj”(Rebuild 个目标)的操作 - 失败。
21+
22+
生成失败。
23+
24+
已用时间 00:00:05.17

ConsoleApplication1/Debug/vc120.idb

1000 KB
Binary file not shown.

ConsoleApplication1/Debug/vc120.pdb

748 KB
Binary file not shown.

ConsoleApplication1/Debug/源.obj

446 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
2+
Release|Win32|F:\project\C++\embedPython\|
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
��

ConsoleApplication1/Release/ConsoleA.4ADA55D5.tlog/unsuccessfulbuild

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
f:\project\c++\embedpython\consoleapplication1\release\vc120.pdb
2+
f:\project\c++\embedpython\consoleapplication1\release\源.obj
3+
f:\project\c++\embedpython\consoleapplication1\release\consolea.4ada55d5.tlog\cl.command.1.tlog
4+
f:\project\c++\embedpython\consoleapplication1\release\consolea.4ada55d5.tlog\cl.read.1.tlog
5+
f:\project\c++\embedpython\consoleapplication1\release\consolea.4ada55d5.tlog\cl.write.1.tlog
6+
f:\project\c++\embedpython\consoleapplication1\release\consolea.4ada55d5.tlog\link.command.1.tlog
7+
f:\project\c++\embedpython\consoleapplication1\release\consolea.4ada55d5.tlog\link.read.1.tlog
8+
f:\project\c++\embedpython\consoleapplication1\release\consolea.4ada55d5.tlog\link.write.1.tlog
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
生成启动时间为 2018/1/2 17:40:06。
2+
1>项目“F:\project\C++\embedPython\ConsoleApplication1\ConsoleApplication1.vcxproj”在节点 2 上(Rebuild 个目标)。
3+
1>ClCompile:
4+
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /Zi /nologo /W3 /WX- /sdl /O2 /Oi /Oy- /GL /D WIN32 /D NDEBUG /D _CONSOLE /D _LIB /D _UNICODE /D UNICODE /Gm- /EHsc /MD /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Release\\" /Fd"Release\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt "源.cpp"
5+
源.cpp
6+
Link:
7+
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"F:\project\C++\embedPython\Release\ConsoleApplication1.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"F:\project\C++\embedPython\Release\ConsoleApplication1.pdb" /SUBSYSTEM:CONSOLE /OPT:REF /OPT:ICF /LTCG /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"F:\project\C++\embedPython\Release\ConsoleApplication1.lib" /MACHINE:X86 /SAFESEH "Release\源.obj"
8+
1>源.obj : error LNK2001: 无法解析的外部符号 __imp__Py_Initialize
9+
1>源.obj : error LNK2001: 无法解析的外部符号 __imp__PyEval_CallObjectWithKeywords
10+
1>源.obj : error LNK2001: 无法解析的外部符号 __imp__PyImport_ImportModule
11+
1>源.obj : error LNK2001: 无法解析的外部符号 __imp__Py_Finalize
12+
1>源.obj : error LNK2001: 无法解析的外部符号 __imp__PyObject_GetAttrString
13+
1>F:\project\C++\embedPython\Release\ConsoleApplication1.exe : fatal error LNK1120: 5 个无法解析的外部命令
14+
1>已完成生成项目“F:\project\C++\embedPython\ConsoleApplication1\ConsoleApplication1.vcxproj”(Rebuild 个目标)的操作 - 失败。
15+
16+
生成失败。
17+
18+
已用时间 00:00:00.36

ConsoleApplication1/Release/vc120.pdb

76 KB
Binary file not shown.

ConsoleApplication1/Release/源.obj

65.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
2+
Debug|x64|F:\project\C++\embedPython\|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
f:\project\c++\embedpython\consoleapplication1\x64\debug\vc120.pdb
2+
f:\project\c++\embedpython\consoleapplication1\x64\debug\vc120.idb
3+
f:\project\c++\embedpython\consoleapplication1\x64\debug\源.obj
4+
f:\project\c++\embedpython\x64\debug\consoleapplication1.ilk
5+
f:\project\c++\embedpython\x64\debug\consoleapplication1.exe
6+
f:\project\c++\embedpython\x64\debug\consoleapplication1.pdb
7+
f:\project\c++\embedpython\consoleapplication1\x64\debug\consolea.4ada55d5.tlog\cl.command.1.tlog
8+
f:\project\c++\embedpython\consoleapplication1\x64\debug\consolea.4ada55d5.tlog\cl.read.1.tlog
9+
f:\project\c++\embedpython\consoleapplication1\x64\debug\consolea.4ada55d5.tlog\cl.write.1.tlog
10+
f:\project\c++\embedpython\consoleapplication1\x64\debug\consolea.4ada55d5.tlog\link.command.1.tlog
11+
f:\project\c++\embedpython\consoleapplication1\x64\debug\consolea.4ada55d5.tlog\link.read.1.tlog
12+
f:\project\c++\embedpython\consoleapplication1\x64\debug\consolea.4ada55d5.tlog\link.write.1.tlog
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
生成启动时间为 2018/1/16 14:02:04。
2+
1>项目“F:\project\C++\embedPython\ConsoleApplication1\ConsoleApplication1.vcxproj”在节点 3 上(Rebuild 个目标)。
3+
1>ClCompile:
4+
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /nologo /W3 /WX- /sdl /Od /D WIN32 /D _DEBUG /D _CONSOLE /D _LIB /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"x64\Debug\\" /Fd"x64\Debug\vc120.pdb" /Gd /TP /errorReport:prompt "源.cpp"
5+
源.cpp
6+
Link:
7+
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:PROMPT /OUT:"F:\project\C++\embedPython\x64\Debug\ConsoleApplication1.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"F:\project\C++\embedPython\x64\Debug\ConsoleApplication1.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"F:\project\C++\embedPython\x64\Debug\ConsoleApplication1.lib" /MACHINE:X64 "x64\Debug\源.obj"
8+
ConsoleApplication1.vcxproj -> F:\project\C++\embedPython\x64\Debug\ConsoleApplication1.exe
9+
1>已完成生成项目“F:\project\C++\embedPython\ConsoleApplication1\ConsoleApplication1.vcxproj”(Rebuild 个目标)的操作。
10+
11+
生成成功。
12+
13+
已用时间 00:00:03.67
1020 KB
Binary file not shown.
804 KB
Binary file not shown.

ConsoleApplication1/x64/Debug/源.obj

741 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
2+
Release|x64|F:\project\C++\embedPython\|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
f:\project\c++\embedpython\consoleapplication1\x64\release\vc120.pdb
2+
f:\project\c++\embedpython\consoleapplication1\x64\release\源.obj
3+
f:\project\c++\embedpython\x64\release\consoleapplication1.exe
4+
f:\project\c++\embedpython\x64\release\consoleapplication1.pdb
5+
f:\project\c++\embedpython\consoleapplication1\x64\release\consolea.4ada55d5.tlog\cl.command.1.tlog
6+
f:\project\c++\embedpython\consoleapplication1\x64\release\consolea.4ada55d5.tlog\cl.read.1.tlog
7+
f:\project\c++\embedpython\consoleapplication1\x64\release\consolea.4ada55d5.tlog\cl.write.1.tlog
8+
f:\project\c++\embedpython\consoleapplication1\x64\release\consolea.4ada55d5.tlog\link.command.1.tlog
9+
f:\project\c++\embedpython\consoleapplication1\x64\release\consolea.4ada55d5.tlog\link.read.1.tlog
10+
f:\project\c++\embedpython\consoleapplication1\x64\release\consolea.4ada55d5.tlog\link.write.1.tlog

0 commit comments

Comments
 (0)