Skip to content

Commit

Permalink
disable any optimization for pg build
Browse files Browse the repository at this point in the history
  • Loading branch information
dingxiong committed Dec 8, 2024
1 parent 3750e39 commit 5583424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2024-05-16-postgres-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ cd build_dir
# reference symbols in the default installation folder.
../configure --without-icu --prefix $HOME/code/postgres/build_dir/install_dir
# or for debug build
../configure --without-icu --enable-cassert --enable-debug CFLAGS="-ggdb -Og -g3 -fno-omit-frame-pointer" -prefix $HOME/code/postgres/build_dir/install_dir
../configure --without-icu --enable-cassert --enable-debug CFLAGS="-ggdb -Og -O0 -g3 -fno-omit-frame-pointer" -prefix $HOME/code/postgres/build_dir/install_dir

# make
bear -- make -j6
Expand Down

0 comments on commit 5583424

Please sign in to comment.