From 45939303f65413b20ac06920ea14df650b9c5d94 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Tue, 28 May 2024 14:12:16 +0200 Subject: [PATCH] force gcc --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 4b4180e..db8c4de 100755 --- a/build.sh +++ b/build.sh @@ -41,7 +41,7 @@ echo " Building ${TCL_ROOT}/unix" echo "====================================================================" echo "" cd ${TCL_ROOT}/unix -./configure --prefix=${DEST_DIR} +CC="gcc" ./configure --prefix=${DEST_DIR} make make install cd ${WORLD_ROOT} @@ -53,7 +53,7 @@ echo " Building ${TK_ROOT}/unix" echo "====================================================================" echo "" cd ${TK_ROOT}/unix -./configure --prefix=${DEST_DIR} +CC="gcc" ./configure --prefix=${DEST_DIR} make make install cd ${WORLD_ROOT} @@ -64,7 +64,7 @@ echo " Building ${TCLDP_ROOT}/unix" echo "====================================================================" echo "" cd ${TCLDP_ROOT}/unix -./configure --prefix=${DEST_DIR} +CC="gcc" ./configure --prefix=${DEST_DIR} make cd ${WORLD_ROOT}