Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Wgz
Compiler2023
Commits
185b171e
Commit
185b171e
authored
1 year ago
by
YJP
Browse files
Options
Download
Patches
Plain Diff
[Update] - 2023/05/17 日常更新
parent
2a934eeb
YJP-branch
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.vscode/c_cpp_properties.json
+1
-1
.vscode/c_cpp_properties.json
.vscode/launch.json
+1
-1
.vscode/launch.json
.vscode/tasks.json
+2
-2
.vscode/tasks.json
with
4 additions
and
4 deletions
+4
-4
.vscode/c_cpp_properties.json
+
1
−
1
View file @
185b171e
...
...
@@ -5,7 +5,7 @@
"includePath"
:
[
"${workspaceFolder}/**"
],
"defines"
:
[
"_DEBUG"
,
"UNICODE"
,
"_UNICODE"
],
"windowsSdkVersion"
:
"10.0.17763.0"
,
"compilerPath"
:
"F:
\\
Software Src 1
\\
VScode
\\
mingw64
\b
in
\\
g++.exe"
,
"compilerPath"
:
"F:
/
Software Src 1
\\
VScode
\\
MINGW
\\
mingw64
\
\
bin
\\
g++.exe"
,
/*修改成自己bin目录下的g++.exe,这里的路径和电脑里复制的文件目录有一点不一样,这里是两个反斜杠\\*/
"cStandard"
:
"c11"
,
"cppStandard"
:
"c++17"
,
...
...
This diff is collapsed.
Click to expand it.
.vscode/launch.json
+
1
−
1
View file @
185b171e
...
...
@@ -15,7 +15,7 @@
"environment"
:
[],
"externalConsole"
:
true
,
"MIMode"
:
"gdb"
,
"miDebuggerPath"
:
"F:
\\
Software Src 1
\\
VScode
\\
mingw64
\\
bin
\\
gdb.exe"
,
"miDebuggerPath"
:
"F:
/
Software Src 1
\\
VScode
\\
MINGW
\\
mingw64
\\
bin
\\
gdb.exe"
,
/*修改成自己bin目录下的gdb.exe,这里的路径和电脑里复制的文件目录有一点不一样,这里是两个反斜杠\\*/
"setupCommands"
:
[
{
...
...
This diff is collapsed.
Click to expand it.
.vscode/tasks.json
+
2
−
2
View file @
185b171e
...
...
@@ -6,7 +6,7 @@
{
"type"
:
"shell"
,
"label"
:
"task g++"
,
"command"
:
"F:
\\
Software Src 1
\\
VScode
\\
mingw64
\\
bin
\\
g++.exe"
,
"command"
:
"F:
/
Software Src 1
\\
VScode
\\
MINGW
\\
mingw64
\\
bin
\\
g++.exe"
,
/*修改成自己bin目录下的g++.exe,这里的路径和电脑里复制的文件目录有一点不一样,这里是两个反斜杠\\*/
"args"
:
[
"-g"
,
...
...
@@ -19,7 +19,7 @@
"-std=c++17"
],
"options"
:
{
"cwd"
:
"F:
\\
Software Src 1
\\
VScode
\\
mingw64
\\
bin"
"cwd"
:
"F:
/
Software Src 1
\\
VScode
\\
MINGW
\\
mingw64
\\
bin"
/*修改成自己bin目录,这里的路径和电脑里复制的文件目录有一点不一样,这里是两个反斜杠\\*/
},
"problemMatcher"
:[
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets