Skip to content

Commit 44d5138

Browse files
authored
chore: enable debug symbols on PG compile (#151)
* chore: enable debug symbols on PG compile * bump to rc version * use -O0 -g instead
1 parent df3f93d commit 44d5138

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ansible/tasks/setup-postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
- name: Postgres - configure
6565
shell:
66-
cmd: CFLAGS='{{ cflags }}' LLVM_CONFIG=/usr/bin/llvm-config-11 CLANG=/usr/bin/clang-11 ./configure --with-llvm --with-openssl --with-systemd --with-uuid=e2fs --exec-prefix=/usr/lib/postgresql --datarootdir=/var/lib/postgresql
66+
cmd: CFLAGS='{{ cflags }} -ggdb -O0 -g -fno-omit-frame-pointer' LLVM_CONFIG=/usr/bin/llvm-config-11 CLANG=/usr/bin/clang-11 ./configure --enable-cassert --enable-debug --with-llvm --with-openssl --with-systemd --with-uuid=e2fs --exec-prefix=/usr/lib/postgresql --datarootdir=/var/lib/postgresql
6767
chdir: /tmp/postgresql-{{ postgresql_release }}
6868
become: yes
6969

common.vars.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"postgres-version": "14.1.0.14"
2+
"postgres-version": "14.1.0.15-rc0"
33
}

0 commit comments

Comments
 (0)