mirror of
https://github.com/serge1/ELFIO.git
synced 2024-11-02 20:29:05 +00:00
8e0b5754e4
ELF standard requires that all STB_LOCAL symbols will go prior others and sh_info entry will contain the number of the local symbols
53 lines
1.8 KiB
JSON
53 lines
1.8 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run ELFIO Tests",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/tests/ELFIOTest",
|
|
"args": [
|
|
"-r",
|
|
"short"
|
|
],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}/tests",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"preLaunchTask": "ELFIO Test build",
|
|
"miDebuggerPath": "/usr/bin/gdb"
|
|
},
|
|
{
|
|
"name": "Run ELF Dump",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/examples/elfdump/elfdump",
|
|
"args": ["tests/elf_examples/crash.elf"],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"preLaunchTask": "ELF Dump Build",
|
|
"miDebuggerPath": "/usr/bin/gdb"
|
|
}
|
|
]
|
|
} |