OLD | NEW |
1 dnl === configure.ac --------------------------------------------------------=== | 1 dnl === configure.ac --------------------------------------------------------=== |
2 dnl The LLVM Compiler Infrastructure | 2 dnl The LLVM Compiler Infrastructure |
3 dnl | 3 dnl |
4 dnl This file is distributed under the University of Illinois Open Source | 4 dnl This file is distributed under the University of Illinois Open Source |
5 dnl License. See LICENSE.TXT for details. | 5 dnl License. See LICENSE.TXT for details. |
6 dnl | 6 dnl |
7 dnl===-----------------------------------------------------------------------=== | 7 dnl===-----------------------------------------------------------------------=== |
8 dnl This is the LLVM configuration script. It is processed by the autoconf | 8 dnl This is the LLVM configuration script. It is processed by the autoconf |
9 dnl program to produce a script named configure. This script contains the | 9 dnl program to produce a script named configure. This script contains the |
10 dnl configuration checks that LLVM needs in order to support multiple platforms. | 10 dnl configuration checks that LLVM needs in order to support multiple platforms. |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 *-*-auroraux*) | 292 *-*-auroraux*) |
293 llvm_cv_target_os_type="AuroraUX" ;; | 293 llvm_cv_target_os_type="AuroraUX" ;; |
294 *-*-win32*) | 294 *-*-win32*) |
295 llvm_cv_target_os_type="Win32" ;; | 295 llvm_cv_target_os_type="Win32" ;; |
296 *-*-mingw*) | 296 *-*-mingw*) |
297 llvm_cv_target_os_type="MingW" ;; | 297 llvm_cv_target_os_type="MingW" ;; |
298 *-*-haiku*) | 298 *-*-haiku*) |
299 llvm_cv_target_os_type="Haiku" ;; | 299 llvm_cv_target_os_type="Haiku" ;; |
300 *-*-rtems*) | 300 *-*-rtems*) |
301 llvm_cv_target_os_type="RTEMS" ;; | 301 llvm_cv_target_os_type="RTEMS" ;; |
| 302 *-*-nacl*) |
| 303 llvm_cv_target_os_type="NativeClient" ;; |
302 *-unknown-eabi*) | 304 *-unknown-eabi*) |
303 llvm_cv_target_os_type="Freestanding" ;; | 305 llvm_cv_target_os_type="Freestanding" ;; |
304 *) | 306 *) |
305 llvm_cv_target_os_type="Unknown" ;; | 307 llvm_cv_target_os_type="Unknown" ;; |
306 esac]) | 308 esac]) |
307 | 309 |
308 dnl Make sure we aren't attempting to configure for an unknown system | 310 dnl Make sure we aren't attempting to configure for an unknown system |
309 if test "$llvm_cv_os_type" = "Unknown" ; then | 311 if test "$llvm_cv_os_type" = "Unknown" ; then |
310 AC_MSG_ERROR([Operating system is unknown, configure can't continue]) | 312 AC_MSG_ERROR([Operating system is unknown, configure can't continue]) |
311 fi | 313 fi |
(...skipping 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1770 AC_CONFIG_MAKEFILE(test/Makefile.tests) | 1772 AC_CONFIG_MAKEFILE(test/Makefile.tests) |
1771 AC_CONFIG_MAKEFILE(unittests/Makefile) | 1773 AC_CONFIG_MAKEFILE(unittests/Makefile) |
1772 AC_CONFIG_MAKEFILE(tools/Makefile) | 1774 AC_CONFIG_MAKEFILE(tools/Makefile) |
1773 AC_CONFIG_MAKEFILE(utils/Makefile) | 1775 AC_CONFIG_MAKEFILE(utils/Makefile) |
1774 AC_CONFIG_MAKEFILE(projects/Makefile) | 1776 AC_CONFIG_MAKEFILE(projects/Makefile) |
1775 AC_CONFIG_MAKEFILE(bindings/Makefile) | 1777 AC_CONFIG_MAKEFILE(bindings/Makefile) |
1776 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) | 1778 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) |
1777 | 1779 |
1778 dnl Finally, crank out the output | 1780 dnl Finally, crank out the output |
1779 AC_OUTPUT | 1781 AC_OUTPUT |
OLD | NEW |