Chromium Code Reviews| 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_vc_target_os_type="NativeClient" ;; | |
|
jvoung - send to chromium...
2011/08/08 20:36:46
*_vc_* -> *_cv_* ?
krasin
2011/08/08 21:25:13
Thanks, good catch.
| |
| 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 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1773 AC_CONFIG_MAKEFILE(test/Makefile.tests) | 1775 AC_CONFIG_MAKEFILE(test/Makefile.tests) |
| 1774 AC_CONFIG_MAKEFILE(unittests/Makefile) | 1776 AC_CONFIG_MAKEFILE(unittests/Makefile) |
| 1775 AC_CONFIG_MAKEFILE(tools/Makefile) | 1777 AC_CONFIG_MAKEFILE(tools/Makefile) |
| 1776 AC_CONFIG_MAKEFILE(utils/Makefile) | 1778 AC_CONFIG_MAKEFILE(utils/Makefile) |
| 1777 AC_CONFIG_MAKEFILE(projects/Makefile) | 1779 AC_CONFIG_MAKEFILE(projects/Makefile) |
| 1778 AC_CONFIG_MAKEFILE(bindings/Makefile) | 1780 AC_CONFIG_MAKEFILE(bindings/Makefile) |
| 1779 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) | 1781 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) |
| 1780 | 1782 |
| 1781 dnl Finally, crank out the output | 1783 dnl Finally, crank out the output |
| 1782 AC_OUTPUT | 1784 AC_OUTPUT |
| OLD | NEW |