URL
https://opencores.org/ocsvn/hf-risc/hf-risc/trunk
Subversion Repositories hf-risc
[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [newlib/] [libgloss/] [riscv/] [configure.ac] - Rev 13
Compare with Previous | Blame | View Log
#=========================================================================# configure.ac for riscv libgloss and crt0#=========================================================================#-------------------------------------------------------------------------# Project metadata#-------------------------------------------------------------------------m4_define( proj_name, [RISC-V libgloss])m4_define( proj_version, [?])m4_define( proj_maintainer, [Andrew Waterman])m4_define( proj_abbreviation, [riscv-libgloss])#-------------------------------------------------------------------------# Setup#-------------------------------------------------------------------------AC_INIT([proj_name],[proj_version],[proj_maintainer],[proj_abbreviation])AC_CONFIG_SRCDIR([crt0.S])AC_CONFIG_AUX_DIR([${srcdir}/../..])#-------------------------------------------------------------------------# Checks for programs#-------------------------------------------------------------------------LIB_AC_PROG_CCAC_CHECK_TOOL([AR],[ar])AC_CHECK_TOOL([RANLIB],[ranlib])AC_PROG_INSTALL#-------------------------------------------------------------------------# Output#-------------------------------------------------------------------------if test "$srcdir" = "." ; thenif test "${with_target_subdir}" != "." ; thenlibgloss_topdir="${srcdir}/${with_multisrctop}../../.."elselibgloss_topdir="${srcdir}/${with_multisrctop}../.."fielselibgloss_topdir="${srcdir}/../.."fiAC_CONFIG_AUX_DIR($libgloss_topdir)AC_CONFIG_FILES(Makefile,. ${libgloss_topdir}/config-ml.in,srcdir=${srcdir}target=${target}with_multisubdir=${with_multisubdir}ac_configure_args="${ac_configure_args} --enable-multilib"CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}libgloss_topdir=${libgloss_topdir})AC_OUTPUT
