source: rtems/c/src/lib/libbsp/moxie/moxiesim/configure.ac @ a0663b2

5
Last change on this file since a0663b2 was a0663b2, checked in by Joel Sherrill <joel@…>, on 11/21/17 at 19:27:31

libbsp/*/*/configure.ac: Remove references to bsp_specs in AC_CONFIG_SRCDIR

Updates #3250.

  • Property mode set to 100644
File size: 965 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id: configure.ac,v 1.20 2009/11/28 06:28:39 ralf Exp $
4
5AC_PREREQ(2.60)
6AC_INIT([rtems-c-src-lib-libbsp-moxie-moxiesim],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
7AC_CONFIG_SRCDIR([make/custom/moxiesim.cfg])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.10])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
17
18RTEMS_BSP_CLEANUP_OPTIONS
19
20AC_MSG_CHECKING([for old moxie assembly syntax])
21AC_COMPILE_IFELSE(
22  [AC_LANG_PROGRAM(
23    [],
24    [asm("sub.l \$r0, \$r0");])],
25  [HAVE_OLD_MOXIE_ASM=yes],
26  [HAVE_OLD_MOXIE_ASM=no])
27AC_MSG_RESULT([$HAVE_OLD_MOXIE_ASM])
28if test "x$HAVE_OLD_MOXIE_ASM" = xyes; then
29  AC_DEFINE(HAVE_OLD_MOXIE_ASM,
30            1, [Define if you are using old moxie asm syntax (sub.l)])
31fi
32
33# Explicitly list all Makefiles here
34AC_CONFIG_FILES([Makefile])
35AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.