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

Side by Side Diff: configure

Issue 1645673002: only build dump_syms_mac for x86 hosts (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: regen configure Created 4 years, 10 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 | « Makefile.in ('k') | configure.ac » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #! /bin/sh 1 #! /bin/sh
2 # Guess values for system-dependent variables and create Makefiles. 2 # Guess values for system-dependent variables and create Makefiles.
3 # Generated by GNU Autoconf 2.69 for breakpad 0.1. 3 # Generated by GNU Autoconf 2.69 for breakpad 0.1.
4 # 4 #
5 # Report bugs to <google-breakpad-dev@googlegroups.com>. 5 # Report bugs to <google-breakpad-dev@googlegroups.com>.
6 # 6 #
7 # 7 #
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
9 # 9 #
10 # 10 #
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 GTEST_CONFIG 633 GTEST_CONFIG
634 GMOCK_LIBS 634 GMOCK_LIBS
635 GMOCK_CFLAGS 635 GMOCK_CFLAGS
636 GMOCK_CONFIG 636 GMOCK_CONFIG
637 SYSTEM_TEST_LIBS_FALSE 637 SYSTEM_TEST_LIBS_FALSE
638 SYSTEM_TEST_LIBS_TRUE 638 SYSTEM_TEST_LIBS_TRUE
639 DISABLE_TOOLS_FALSE 639 DISABLE_TOOLS_FALSE
640 DISABLE_TOOLS_TRUE 640 DISABLE_TOOLS_TRUE
641 DISABLE_PROCESSOR_FALSE 641 DISABLE_PROCESSOR_FALSE
642 DISABLE_PROCESSOR_TRUE 642 DISABLE_PROCESSOR_TRUE
643 X86_HOST_FALSE
644 X86_HOST_TRUE
643 ANDROID_HOST_FALSE 645 ANDROID_HOST_FALSE
644 ANDROID_HOST_TRUE 646 ANDROID_HOST_TRUE
645 LINUX_HOST_FALSE 647 LINUX_HOST_FALSE
646 LINUX_HOST_TRUE 648 LINUX_HOST_TRUE
647 HAVE_CXX11 649 HAVE_CXX11
648 PTHREAD_CFLAGS 650 PTHREAD_CFLAGS
649 PTHREAD_LIBS 651 PTHREAD_LIBS
650 PTHREAD_CC 652 PTHREAD_CC
651 ax_pthread_config 653 ax_pthread_config
652 EGREP 654 EGREP
(...skipping 6765 matching lines...) Expand 10 before | Expand all | Expand 10 after
7418 esac 7420 esac
7419 if test x$ANDROID_HOST = xtrue; then 7421 if test x$ANDROID_HOST = xtrue; then
7420 ANDROID_HOST_TRUE= 7422 ANDROID_HOST_TRUE=
7421 ANDROID_HOST_FALSE='#' 7423 ANDROID_HOST_FALSE='#'
7422 else 7424 else
7423 ANDROID_HOST_TRUE='#' 7425 ANDROID_HOST_TRUE='#'
7424 ANDROID_HOST_FALSE= 7426 ANDROID_HOST_FALSE=
7425 fi 7427 fi
7426 7428
7427 7429
7430 # Some tools (like mac ones) only support x86 currently.
7431 case $host_cpu in
7432 i?86|x86_64)
7433 X86_HOST=true
7434 ;;
7435 esac
7436 if test x$X86_HOST = xtrue; then
7437 X86_HOST_TRUE=
7438 X86_HOST_FALSE='#'
7439 else
7440 X86_HOST_TRUE='#'
7441 X86_HOST_FALSE=
7442 fi
7443
7444
7428 # Check whether --enable-processor was given. 7445 # Check whether --enable-processor was given.
7429 if test "${enable_processor+set}" = set; then : 7446 if test "${enable_processor+set}" = set; then :
7430 enableval=$enable_processor; case "${enableval}" in 7447 enableval=$enable_processor; case "${enableval}" in
7431 yes) 7448 yes)
7432 disable_processor=false 7449 disable_processor=false
7433 ;; 7450 ;;
7434 no) 7451 no)
7435 disable_processor=true 7452 disable_processor=true
7436 ;; 7453 ;;
7437 *) 7454 *)
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
7886 Usually this means the macro was only invoked conditionally." "$LINENO" 5 7903 Usually this means the macro was only invoked conditionally." "$LINENO" 5
7887 fi 7904 fi
7888 if test -z "${LINUX_HOST_TRUE}" && test -z "${LINUX_HOST_FALSE}"; then 7905 if test -z "${LINUX_HOST_TRUE}" && test -z "${LINUX_HOST_FALSE}"; then
7889 as_fn_error $? "conditional \"LINUX_HOST\" was never defined. 7906 as_fn_error $? "conditional \"LINUX_HOST\" was never defined.
7890 Usually this means the macro was only invoked conditionally." "$LINENO" 5 7907 Usually this means the macro was only invoked conditionally." "$LINENO" 5
7891 fi 7908 fi
7892 if test -z "${ANDROID_HOST_TRUE}" && test -z "${ANDROID_HOST_FALSE}"; then 7909 if test -z "${ANDROID_HOST_TRUE}" && test -z "${ANDROID_HOST_FALSE}"; then
7893 as_fn_error $? "conditional \"ANDROID_HOST\" was never defined. 7910 as_fn_error $? "conditional \"ANDROID_HOST\" was never defined.
7894 Usually this means the macro was only invoked conditionally." "$LINENO" 5 7911 Usually this means the macro was only invoked conditionally." "$LINENO" 5
7895 fi 7912 fi
7913 if test -z "${X86_HOST_TRUE}" && test -z "${X86_HOST_FALSE}"; then
7914 as_fn_error $? "conditional \"X86_HOST\" was never defined.
7915 Usually this means the macro was only invoked conditionally." "$LINENO" 5
7916 fi
7896 if test -z "${DISABLE_PROCESSOR_TRUE}" && test -z "${DISABLE_PROCESSOR_FALSE}"; then 7917 if test -z "${DISABLE_PROCESSOR_TRUE}" && test -z "${DISABLE_PROCESSOR_FALSE}"; then
7897 as_fn_error $? "conditional \"DISABLE_PROCESSOR\" was never defined. 7918 as_fn_error $? "conditional \"DISABLE_PROCESSOR\" was never defined.
7898 Usually this means the macro was only invoked conditionally." "$LINENO" 5 7919 Usually this means the macro was only invoked conditionally." "$LINENO" 5
7899 fi 7920 fi
7900 if test -z "${DISABLE_TOOLS_TRUE}" && test -z "${DISABLE_TOOLS_FALSE}"; then 7921 if test -z "${DISABLE_TOOLS_TRUE}" && test -z "${DISABLE_TOOLS_FALSE}"; then
7901 as_fn_error $? "conditional \"DISABLE_TOOLS\" was never defined. 7922 as_fn_error $? "conditional \"DISABLE_TOOLS\" was never defined.
7902 Usually this means the macro was only invoked conditionally." "$LINENO" 5 7923 Usually this means the macro was only invoked conditionally." "$LINENO" 5
7903 fi 7924 fi
7904 if test -z "${SYSTEM_TEST_LIBS_TRUE}" && test -z "${SYSTEM_TEST_LIBS_FALSE}"; th en 7925 if test -z "${SYSTEM_TEST_LIBS_TRUE}" && test -z "${SYSTEM_TEST_LIBS_FALSE}"; th en
7905 as_fn_error $? "conditional \"SYSTEM_TEST_LIBS\" was never defined. 7926 as_fn_error $? "conditional \"SYSTEM_TEST_LIBS\" was never defined.
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after
9225 exec 5>>config.log 9246 exec 5>>config.log
9226 # Use ||, not &&, to avoid exiting from the if with $? = 1, which 9247 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
9227 # would make configure fail if this is the last instruction. 9248 # would make configure fail if this is the last instruction.
9228 $ac_cs_success || as_fn_exit 1 9249 $ac_cs_success || as_fn_exit 1
9229 fi 9250 fi
9230 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then 9251 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
9231 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_un recognized_opts" >&5 9252 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_un recognized_opts" >&5
9232 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} 9253 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
9233 fi 9254 fi
9234 9255
OLDNEW
« no previous file with comments | « Makefile.in ('k') | configure.ac » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698