source: trunk/libs/newlib/src/libgloss/mcore/configure.in @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 1.4 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.59)
3AC_INIT(crt0.S)
4
5if test "${enable_shared}" = "yes" ; then
6    echo "Shared libraries not supported for cross compiling, ignored"
7fi
8
9if test "$srcdir" = "." ; then
10  if test "${with_target_subdir}" != "." ; then
11    libgloss_topdir="${srcdir}/${with_multisrctop}../../.."
12  else
13    libgloss_topdir="${srcdir}/${with_multisrctop}../.."
14  fi
15else
16  libgloss_topdir="${srcdir}/../.."
17fi
18AC_CONFIG_AUX_DIR($libgloss_topdir)
19
20AC_CANONICAL_SYSTEM
21AC_ARG_PROGRAM
22
23AC_PROG_INSTALL
24
25LIB_AC_PROG_CC
26AS=${AS-as}
27AC_SUBST(AS)
28AR=${AR-ar}
29AC_SUBST(AR)
30LD=${LD-ld}
31AC_SUBST(LD)
32AC_PROG_RANLIB
33LIB_AM_PROG_AS
34
35case "${target}" in
36  mcore-*-elf)
37        bsp_prefix=elf-
38        ;;
39  mcore-*-pe)
40        bsp_prefix=pe-
41        ;;
42esac
43
44AC_SUBST(bsp_prefix)
45
46host_makefile_frag=${srcdir}/../config/default.mh
47
48dnl We have to assign the same value to other variables because autoconf
49dnl doesn't provide a mechanism to substitute a replacement keyword with
50dnl arbitrary data or pathnames.
51dnl
52host_makefile_frag_path=$host_makefile_frag
53AC_SUBST(host_makefile_frag_path)
54AC_SUBST_FILE(host_makefile_frag)
55
56AC_CONFIG_FILES(Makefile,
57. ${libgloss_topdir}/config-ml.in,
58srcdir=${srcdir}
59target=${target}
60with_multisubdir=${with_multisubdir}
61ac_configure_args="${ac_configure_args} --enable-multilib"
62CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
63libgloss_topdir=${libgloss_topdir}
64)
65AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.