From 2780ee2ebc2d3a1e8a44895e65c78a946ac610b8 Mon Sep 17 00:00:00 2001 From: apio Date: Thu, 7 Mar 2024 22:33:17 +0100 Subject: [PATCH] ports: Build gcc without --enable-checking Now that gcc works, we don't need to bloat the binary with asserts. --- ports/gcc/PACKAGE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/gcc/PACKAGE b/ports/gcc/PACKAGE index 284583b7..e70a7c12 100644 --- a/ports/gcc/PACKAGE +++ b/ports/gcc/PACKAGE @@ -17,7 +17,7 @@ do_patch() do_configure() { - $srcdir/configure --prefix=/usr --target=$LUNA_ARCH-luna --host=$LUNA_ARCH-luna --disable-nls --with-build-sysroot=$LUNA_BASE --enable-languages=c,c++ --enable-checking --enable-initfini-array + $srcdir/configure --prefix=/usr --target=$LUNA_ARCH-luna --host=$LUNA_ARCH-luna --disable-nls --with-build-sysroot=$LUNA_BASE --enable-languages=c,c++ --enable-initfini-array } do_build()