From f77502f0663aab9362a387a7ef3759700652fe2f Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Wed, 5 Aug 2026 21:48:03 +0100 Subject: [PATCH] doc: Drop GCC upgrade instructions for NetBSD NetBSD 11.0, the latest release, ships GCC 12.5.0 as the base system compiler, which meets the minimum version requirement in `doc/dependencies.md`. Github-Pull: #35908 Rebased-From: 9b85c9814d1d5b1ef9caedc25dc336dacb887dcc --- doc/build-netbsd.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/doc/build-netbsd.md b/doc/build-netbsd.md index caa1c7b1e24..99a1dafb25c 100644 --- a/doc/build-netbsd.md +++ b/doc/build-netbsd.md @@ -15,22 +15,6 @@ The example commands below use `pkgin`. pkgin install git cmake pkg-config boost libevent ``` -NetBSD currently ships with an older version of `gcc` than is needed to build. You should upgrade your `gcc` and then pass this new version to the configure script. - -For example, grab `gcc12`: -``` -pkgin install gcc12 -``` - -Then, when configuring, pass the following: -```bash -cmake -B build - ... - -DCMAKE_C_COMPILER="/usr/pkg/gcc12/bin/gcc" \ - -DCMAKE_CXX_COMPILER="/usr/pkg/gcc12/bin/g++" \ - ... -``` - SQLite is required for the wallet: ```bash