Re: --enable-{debug,cassert} should also activate --enable-depend - Mailing list pgsql-hackers

From Aleksander Alekseev
Subject Re: --enable-{debug,cassert} should also activate --enable-depend
Date
Msg-id CAJ7c6TO2mWe7Ba2mNfsH3jDiKZtUe--vFTfqRWejLzFoAMpo5Q@mail.gmail.com
Whole thread Raw
In response to Re: --enable-{debug,cassert} should also activate --enable-depend  (Dimitrios Apostolou <jimis@gmx.net>)
List pgsql-hackers
Hi Dimitris,

> Do you mean autotools are being deprecated in postgres? So people should
> better choose meson?

Yes, Meson support was added in PostgreSQL 16 and it will eventually
replace Autotools [1]. Meson is more convenient and works faster so I
encourage you to give it a try.

Here is a quick start:

```
sudo apt install ninja-build

pip3 install meson
# or: sudo apt install meson

meson setup --buildtype debug -Dcassert=true -Dtap_tests=enabled
-Dlz4=enabled -Dldap=disabled -Dprefix=/Users/eax/pginstall build
ninja -C build
meson test -C build
```

[1]: https://www.postgresql.org/docs/release/16.0/

-- 
Best regards,
Aleksander Alekseev



pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: Re: Non-reproducible AIO failure
Next
From: Fujii Masao
Date:
Subject: Re: Avoid possible dereference null pointer (contrib/postgres_fdw/postgres_fdw.c)