From d0578ad7f501b8d4670835e0c12ef4a761b6e39d Mon Sep 17 00:00:00 2001 From: Xiong Ding Date: Sun, 8 Dec 2024 12:31:38 -0800 Subject: [PATCH] fix postgres build instruction typos --- _posts/2024-05-16-postgres-getting-started.md | 2 +- _posts/2024-10-14-rust-getting-started.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/_posts/2024-05-16-postgres-getting-started.md b/_posts/2024-05-16-postgres-getting-started.md index f20ce12..54a1738 100644 --- a/_posts/2024-05-16-postgres-getting-started.md +++ b/_posts/2024-05-16-postgres-getting-started.md @@ -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 -g3 -fno-omit-frame-pointer" -prefix $HOME/code/postgres/build_dir/install_dir # make bear -- make -j6 diff --git a/_posts/2024-10-14-rust-getting-started.md b/_posts/2024-10-14-rust-getting-started.md index 3ea0789..7b09831 100644 --- a/_posts/2024-10-14-rust-getting-started.md +++ b/_posts/2024-10-14-rust-getting-started.md @@ -12,7 +12,8 @@ tags: [rust] 2. Install `rust-analyzer`: `rustup component add rust-analyzer` and config nvim lspconfig and treesitter. 3. Read -4. Also checkout +4. Checkout . +5. Checkout . ## Build from source