Update build type recommendation to match our previous default

Currently the only difference between RelWithDebInfo and Release is that
the former adds -g (aka debuginfo=2) though it doesn't seem to make a lot
of difference in my testing.

Since build_tools/make_pkg.sh and debian/rules use RelWithDebInfo, let's be
consistent with those.
This commit is contained in:
Johannes Altmanninger 2024-10-19 17:54:31 +02:00
parent fa72d1faa1
commit dccc3349f0

View file

@ -236,7 +236,7 @@ CMake remains for now because cargo is unable to install the many asset files th
Some smaller changes:
- The default build configuration has changed to "Debug".
Please pass ``-DCMAKE_BUILD_TYPE=Release`` if you want to build a package.
Please pass ``-DCMAKE_BUILD_TYPE=RelWithDebInfo`` if you want to build a package.
- Xcode support has been removed (:issue:`9924`).
- fish no longer links against the (n)curses library, opting to read the terminfo database via the terminfo crate.
This means hashed terminfo databases are no longer supported (from our research, they are basically unmaintained and unused).