#!/bin/bash hvconfig_pre() { CONFIGURE_OPTS+=" \ --target=${CLFS_TARGET} \ --with-lib-path=/tools/lib \ --disable-nls \ --enable-shared \ --disable-multilib" case "${HVL_TARGET}" in "x86_64") # This adds 64 bit support to Binutils. CONFIGURE_OPTS+=" --enable-64-bit-bfd" ;; esac } hvconfig_post() { ${HVMAKE} configure-host }