source: trunk/libs/newlib/src/newlib/libc/machine/nds32/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: 700 bytes
Line 
1dnl This is the newlib/libc/machine/nds32 configure.in file.
2dnl Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT([newlib],[NEWLIB_VERSION])
6AC_CONFIG_SRCDIR([setjmp.S])
7
8dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.
9AC_CONFIG_AUX_DIR(../../../..)
10
11NEWLIB_CONFIGURE(../../..)
12
13dnl Use builtin macro to detect if this is for "AndeStar ISA V3m".
14AC_NO_EXECUTABLES
15AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
16[[#ifdef __NDS32_ISA_V3M__
17warning: This is nds32_isa_v3m.
18#endif
19]])],
20                  [is_nds32_isa_v3m="no"],
21                  [is_nds32_isa_v3m="yes"])
22AM_CONDITIONAL(IS_NDS32_ISA_V3M, test "$is_nds32_isa_v3m" = "yes")
23
24
25AC_CONFIG_FILES([Makefile])
26AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.