mirror of
https://github.com/serge1/ELFIO.git
synced 2024-11-02 11:27:03 +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
40 lines
949 B
JSON
40 lines
949 B
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"label": "ELFIO Test build",
|
|
"command": "make",
|
|
"args": [
|
|
"INCLUDES=-I..",
|
|
"CXXFLAGS='-g -O0'"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceRoot}/tests"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "ELF Dump Build",
|
|
"command": "make",
|
|
"args": [
|
|
"INCLUDES=-I..",
|
|
"CXXFLAGS='-g -O0'"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
} |