In this video
0. Shell integration
2. Basic navigation
3. tmp_installation exclusion
4. Attaching local debugger
Configuration for debugging
./configure --prefix=$HOME/project --enable-depend --enable-cassert CFLAGS="-ggdb -O0 -fno-omit-frame-pointer" CPPFLAGS="-g -O0" --enable-debug --enable-injection-points && make -j12 install
launch.json for debugging
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Attach DB",
"type": "cppdbg",
"request": "attach",
"program": "${env:HOME}/project/bin/postgres",
"MIMode": "lldb",
"targetArchitecture": "arm64"
},
]
}
settings to exclude tmp_install
{
"files.exclude": {
"tmp_install/**": true
},
"C_Cpp.files.exclude": {
"tmp_install/**": true
},
"search.exclude": {
"**/node_modules": true
},
}
In questa pagina del sito puoi guardare il video online VSCode tips for Postgres development della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Byte Relay 30 luglio 2024, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 1,254 volte e gli è piaciuto 39 spettatori. Buona visione!