4.104.114.84.95
Last change
on this file since 2e0fd427 was
2e0fd427,
checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/00 at 15:44:04
|
2000-11-02 Ralf Corsepius <corsepiu@…>
- aclocal/*: Replace with contents of macros/*.m4
- macros/: Remove.
- aclocal/ar-s.m4 aclocal/tool-prefix.m4: Remove.
- Makefile.am: Reflect changes to aclocal/ and macros/.
|
-
Property mode set to
100644
|
File size:
433 bytes
|
Line | |
---|
1 | dnl |
---|
2 | dnl $Id$ |
---|
3 | dnl |
---|
4 | dnl Check whether the target compiler accepts -specs |
---|
5 | dnl |
---|
6 | |
---|
7 | AC_DEFUN(RTEMS_GCC_SPECS, |
---|
8 | [AC_REQUIRE([RTEMS_PROG_CC]) |
---|
9 | AC_CACHE_CHECK(whether $CC accepts -specs,rtems_cv_gcc_specs, |
---|
10 | [ |
---|
11 | rtems_cv_gcc_specs=no |
---|
12 | if test "$ac_cv_prog_gcc" = "yes"; then |
---|
13 | touch confspec |
---|
14 | echo 'void f(){}' >conftest.c |
---|
15 | if test -z "`${CC} -specs confspec -c conftest.c 2>&1`";then |
---|
16 | rtems_cv_gcc_specs=yes |
---|
17 | fi |
---|
18 | fi |
---|
19 | rm -f confspec conftest* |
---|
20 | ])]) |
---|
Note: See
TracBrowser
for help on using the repository browser.