Skip to content

Commit

Permalink
main
Browse files Browse the repository at this point in the history
  • Loading branch information
projectoperations committed Nov 11, 2023
1 parent 8cc8a35 commit b249362
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .vscode/files.watcherExclude
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
58 changes: 58 additions & 0 deletions .vscode/igecloudsdev.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"folders": [
{
"path": "../.."
}
],
"settings": {
"Codegeex.OnlyKeyControl": true,
"Codegeex.UseSimilarFileForPrompt": true,
"Codegeex.Privacy": true,
"python.globalModuleInstallation": true,
"refactai.apiKey": "LlGUVFPpbEptk4Bhi8VaUSar"
},
"launch": {
"configurations": [
{
"comments": [
"Full launch.json configuration details can be found here:",
"https://code.visualstudio.com/docs/cpp/launch-json-reference"
],
"name": "(gdb-oneapi) ld.command.self-update.sh Launch",
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "",
"postDebugTask": "",
"program": "/home/igewebs/igecloudsdev/docker/scripts/ld.command.self-update.sh",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [
{
"name": "ZET_ENABLE_PROGRAM_DEBUGGING",
"value": "1"
},
{
"name": "IGC_EnableGTLocationDebugging",
"value": "1"
}
],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "gdb-oneapi",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Disable target async",
"text": "set target-async off",
"ignoreFailures": true
}
]
}
]
}
}

0 comments on commit b249362

Please sign in to comment.