From bc2bd1e64a70869592aeb6867133da162a2092d6 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 6 Sep 2019 20:33:18 +0200 Subject: [PATCH] Ports: Always export Serenity's GCC and G++ in the build environment Export the appropriate CC and CXX to all port commands. --- Ports/.port_include.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Ports/.port_include.sh b/Ports/.port_include.sh index ae727b8b312..cbbe19d5284 100755 --- a/Ports/.port_include.sh +++ b/Ports/.port_include.sh @@ -3,6 +3,9 @@ # This script contains common helpers for all ports. set -e +export CC=i686-pc-serenity-gcc +export CXX=i686-pc-serenity-g++ + if [ -z "$MAKEOPTS" ]; then MAKEOPTS="-j $(nproc)" fi