#!/bin/bash # Setting default configure options for all scripts CONFIGURE_OPTS="\ --prefix=/tools \ --build=${CLFS_HOST} \ --host=${CLFS_TARGET} \ ${CONFIGURE_OPTS}" export CC="${CLFS_TARGET}-gcc ${CLFS_BUILDFLAGS}" export CXX="${CLFS_TARGET}-g++ ${CLFS_BUILDFLAGS}" export AR="${CLFS_TARGET}-ar" export AS="${CLFS_TARGET}-as" export RANLIB="${CLFS_TARGET}-ranlib" export LD="${CLFS_TARGET}-ld" export STRIP="${CLFS_TARGET}-strip"