Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Side by Side Diff: autoconf/configure.ac

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « autoconf/config.sub ('k') | codereview.settings » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 *-unknown-eabi*) 310 *-unknown-eabi*)
311 llvm_cv_link_all_option="-Wl,--whole-archive" 311 llvm_cv_link_all_option="-Wl,--whole-archive"
312 llvm_cv_no_link_all_option="-Wl,--no-whole-archive" 312 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
313 llvm_cv_os_type="Freestanding" 313 llvm_cv_os_type="Freestanding"
314 llvm_cv_platform_type="Unix" ;; 314 llvm_cv_platform_type="Unix" ;;
315 *-unknown-elf*) 315 *-unknown-elf*)
316 llvm_cv_link_all_option="-Wl,--whole-archive" 316 llvm_cv_link_all_option="-Wl,--whole-archive"
317 llvm_cv_no_link_all_option="-Wl,--no-whole-archive" 317 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
318 llvm_cv_os_type="Freestanding" 318 llvm_cv_os_type="Freestanding"
319 llvm_cv_platform_type="Unix" ;; 319 llvm_cv_platform_type="Unix" ;;
320 *-*-nacl*)
321 llvm_cv_link_all_option="-Wl,--whole-archive"
322 llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
323 llvm_cv_os_type="NativeClient"
324 llvm_cv_platform_type="Unix" ;;
320 *) 325 *)
321 llvm_cv_link_all_option="" 326 llvm_cv_link_all_option=""
322 llvm_cv_no_link_all_option="" 327 llvm_cv_no_link_all_option=""
323 llvm_cv_os_type="Unknown" 328 llvm_cv_os_type="Unknown"
324 llvm_cv_platform_type="Unknown" ;; 329 llvm_cv_platform_type="Unknown" ;;
325 esac]) 330 esac])
326 331
327 AC_CACHE_CHECK([type of operating system we're going to target], 332 AC_CACHE_CHECK([type of operating system we're going to target],
328 [llvm_cv_target_os_type], 333 [llvm_cv_target_os_type],
329 [case $target in 334 [case $target in
(...skipping 1712 matching lines...) Expand 10 before | Expand all | Expand 10 after
2042 AC_CONFIG_MAKEFILE(test/Makefile.tests) 2047 AC_CONFIG_MAKEFILE(test/Makefile.tests)
2043 AC_CONFIG_MAKEFILE(unittests/Makefile) 2048 AC_CONFIG_MAKEFILE(unittests/Makefile)
2044 AC_CONFIG_MAKEFILE(tools/Makefile) 2049 AC_CONFIG_MAKEFILE(tools/Makefile)
2045 AC_CONFIG_MAKEFILE(utils/Makefile) 2050 AC_CONFIG_MAKEFILE(utils/Makefile)
2046 AC_CONFIG_MAKEFILE(projects/Makefile) 2051 AC_CONFIG_MAKEFILE(projects/Makefile)
2047 AC_CONFIG_MAKEFILE(bindings/Makefile) 2052 AC_CONFIG_MAKEFILE(bindings/Makefile)
2048 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) 2053 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml)
2049 2054
2050 dnl Finally, crank out the output 2055 dnl Finally, crank out the output
2051 AC_OUTPUT 2056 AC_OUTPUT
OLDNEW
« no previous file with comments | « autoconf/config.sub ('k') | codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698