Undergoing

Postgres Source 디버깅 본문

개발/DB

Postgres Source 디버깅

Halkrine 2024. 7. 3. 14:39

./configure --prefix=$HOME/work/pgsql --enable-cassert --enable-debug CFLAGS="-glldb -O0 -g3 -fno-omit-frame-pointer"

./configure --enable-cassert --prefix=`pwd`/postgres


./configure --prefix=$HOME/work/pgsql --enable-cassert --enable-debug 
 
make distclean

autoreconf -i

make -j16 -s > /dev/null

make check -C src/bin

 

 


lldb
-> attach -p 'postgres pid '(따옴표 필요없)

b function명

'개발 > DB' 카테고리의 다른 글

PostGraphile  (0) 2024.07.11
Postgres Database Replication  (0) 2024.07.10
PG-Strom  (0) 2022.12.07
PostgreSQL - GiST  (0) 2021.12.08
PostgreSQL - GIN  (0) 2021.12.06