guix: remove -Werror=dev

Otherwise the build will fail with warnings about missing Python (removed
in the next commit). However the non-gui build does not need Python.

Note that #25573 contains the same change, because the use of -static-pie
causes warnings when combined with our/CMakes own PIE handling.
This commit is contained in:
fanquake
2026-08-03 10:34:32 +01:00
parent e27c179db2
commit 101400b28f
3 changed files with 3 additions and 6 deletions

View File

@@ -66,8 +66,7 @@ mkdir -p "$DISTSRC"
-DCMAKE_INSTALL_PREFIX="${INSTALLPATH}" \
-DCMAKE_SKIP_RPATH=TRUE \
-DREDUCE_EXPORTS=ON \
-DWITH_CCACHE=OFF \
-Werror=dev
-DWITH_CCACHE=OFF
# Build Bitcoin Core
cmake --build build -j "$JOBS"

View File

@@ -44,8 +44,7 @@ mkdir -p "$DISTSRC"
-DCMAKE_INSTALL_PREFIX="${INSTALLPATH}" \
-DCMAKE_SKIP_RPATH=TRUE \
-DREDUCE_EXPORTS=ON \
-DWITH_CCACHE=OFF \
-Werror=dev
-DWITH_CCACHE=OFF
# Build Bitcoin Core
cmake --build build -j "$JOBS"

View File

@@ -49,8 +49,7 @@ mkdir -p "$DISTSRC"
-DBUILD_GUI_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX="${INSTALLPATH}" \
-DREDUCE_EXPORTS=ON \
-DWITH_CCACHE=OFF \
-Werror=dev
-DWITH_CCACHE=OFF
# Build Bitcoin Core
cmake --build build -j "$JOBS"