source: rtems/c/src/aclocal/canonicalize-tools.m4 @ 08df9497

4.104.114.84.95
Last change on this file since 08df9497 was e73c249, checked in by Joel Sherrill <joel.sherrill@…>, on 03/05/04 at 18:28:38

2004-03-04 Joel Sherrill <joel@…>

  • aclocal/canonicalize-tools.m4: Add SIZE, NM, and OBJCOPY so they can be used in application level makefiles.
  • Property mode set to 100644
File size: 437 bytes
Line 
1dnl
2dnl $Id$
3dnl
4dnl Set target tools
5dnl
6
7AC_DEFUN([RTEMS_CANONICALIZE_TOOLS],
8[AC_REQUIRE([RTEMS_PROG_CC])dnl
9
10dnl FIXME: What shall be done if these tools are not available?
11  RTEMS_CHECK_TOOL(AR,ar,no)
12  RTEMS_CHECK_TOOL(AS,as,no)
13  RTEMS_CHECK_TOOL(LD,ld,no)
14  RTEMS_CHECK_TOOL(SIZE,size,no)
15  RTEMS_CHECK_TOOL(NM,nm,no)
16  RTEMS_CHECK_TOOL(OBJCOPY,objcopy,no)
17
18dnl special treatment of ranlib
19  RTEMS_CHECK_TOOL(RANLIB,ranlib,:)
20])
Note: See TracBrowser for help on using the repository browser.