source: rtems/aclocal/i386-gas-code16.m4 @ 09213ec3

4.104.114.84.95
Last change on this file since 09213ec3 was bf1ef5b, checked in by Joel Sherrill <joel.sherrill@…>, on 10/05/98 at 13:50:53

Regenerated after fixing a typo.

  • Property mode set to 100644
File size: 591 bytes
RevLine 
[5620149]1dnl
2dnl  $Id$
3dnl
4
5dnl check for i386 gas supporting 16 bit mode
[2c3840b]6dnl     - binutils 2.9.1.0.7 and higher
[5620149]7
8AC_DEFUN(RTEMS_I386_GAS_CODE16,
9  if test "${target_cpu}" = "i386"; then
10    AC_CACHE_CHECK([for 16 bit mode assembler support],
11      rtems_cv_prog_gas_code16,
12      [cat > conftest.s << EOF
13         .code16
[f44a81b]14         data32
15         addr32
[bf1ef5b]16         lgdt 0
[5620149]17EOF
18      if AC_TRY_COMMAND($AS_FOR_TARGET -o conftest.o conftest.s); then
19        rtems_cv_prog_gas_code16=yes
20      else
21        rtems_cv_prog_gas_code16=no
22      fi])
[2c3840b]23    RTEMS_GAS_CODE16="$rtems_cv_prog_gas_code16"
[5620149]24  fi
25)
26
Note: See TracBrowser for help on using the repository browser.