Changeset 575a6e5 for libcfa/configure
- Timestamp:
- Aug 9, 2018, 11:07:05 AM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 7a7ab42
- Parents:
- a5121bf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/configure ¶
ra5121bf r575a6e5 623 623 CFA_PREFIX 624 624 CFA_NAME 625 CONFIG_CFAFLAGS 626 CONFIG_CFLAGS 625 627 ARCH_FLAGS 626 628 CFACPP … … 629 631 CONFIGURATION 630 632 ARCHITECTURE 631 AM_BACKSLASH632 AM_DEFAULT_VERBOSITY633 AM_DEFAULT_V634 AM_V635 633 am__untar 636 634 am__tar … … 656 654 INSTALL_SCRIPT 657 655 INSTALL_PROGRAM 656 AM_BACKSLASH 657 AM_DEFAULT_VERBOSITY 658 AM_DEFAULT_V 659 AM_V 658 660 target_alias 659 661 host_alias … … 1910 1912 1911 1913 1914 # Check whether --enable-silent-rules was given. 1915 if test "${enable_silent_rules+set}" = set; then : 1916 enableval=$enable_silent_rules; 1917 fi 1918 1919 case $enable_silent_rules in # ((( 1920 yes) AM_DEFAULT_VERBOSITY=0;; 1921 no) AM_DEFAULT_VERBOSITY=1;; 1922 *) AM_DEFAULT_VERBOSITY=0;; 1923 esac 1924 am_make=${MAKE-make} 1925 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 1926 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } 1927 if ${am_cv_make_support_nested_variables+:} false; then : 1928 $as_echo_n "(cached) " >&6 1929 else 1930 if $as_echo 'TRUE=$(BAR$(V)) 1931 BAR0=false 1932 BAR1=true 1933 V=1 1934 am__doit: 1935 @$(TRUE) 1936 .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then 1937 am_cv_make_support_nested_variables=yes 1938 else 1939 am_cv_make_support_nested_variables=no 1940 fi 1941 fi 1942 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 1943 $as_echo "$am_cv_make_support_nested_variables" >&6; } 1944 if test $am_cv_make_support_nested_variables = yes; then 1945 AM_V='$(V)' 1946 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' 1947 else 1948 AM_V=$AM_DEFAULT_VERBOSITY 1949 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY 1950 fi 1951 AM_BACKSLASH='\' 1952 1912 1953 1913 1954 … … 2343 2384 rmdir .tst 2>/dev/null 2344 2385 2345 # Check whether --enable-silent-rules was given.2346 if test "${enable_silent_rules+set}" = set; then :2347 enableval=$enable_silent_rules;2348 fi2349 2350 case $enable_silent_rules in # (((2351 yes) AM_DEFAULT_VERBOSITY=0;;2352 no) AM_DEFAULT_VERBOSITY=1;;2353 *) AM_DEFAULT_VERBOSITY=1;;2354 esac2355 am_make=${MAKE-make}2356 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&52357 $as_echo_n "checking whether $am_make supports nested variables... " >&6; }2358 if ${am_cv_make_support_nested_variables+:} false; then :2359 $as_echo_n "(cached) " >&62360 else2361 if $as_echo 'TRUE=$(BAR$(V))2362 BAR0=false2363 BAR1=true2364 V=12365 am__doit:2366 @$(TRUE)2367 .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then2368 am_cv_make_support_nested_variables=yes2369 else2370 am_cv_make_support_nested_variables=no2371 fi2372 fi2373 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&52374 $as_echo "$am_cv_make_support_nested_variables" >&6; }2375 if test $am_cv_make_support_nested_variables = yes; then2376 AM_V='$(V)'2377 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'2378 else2379 AM_V=$AM_DEFAULT_VERBOSITY2380 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY2381 fi2382 AM_BACKSLASH='\'2383 2384 2386 if test "`cd $srcdir && pwd`" != "`pwd`"; then 2385 2387 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output … … 2498 2500 2499 2501 2502 # don't use the default CFLAGS as they unconditonnaly add -O2 2503 : ${CFLAGS=""} 2504 2500 2505 # Allow program name tansformation 2501 2506 # will fill program_transform_name with appropriate sed regex … … 2511 2516 2512 2517 2518 #============================================================================== 2519 #Handle specific flags 2513 2520 case $ARCHITECTURE in 2514 2521 "x64" ) ARCH_FLAGS="-m64";; … … 2516 2523 "arm" ) ARCH_FLAGS="";; 2517 2524 esac 2525 2526 2527 2528 case $CONFIGURATION in 2529 "debug" ) 2530 CONFIG_CFLAGS="-O0 -g" 2531 CONFIG_CFAFLAGS="-debug" 2532 ;; 2533 "nodebug" ) 2534 CONFIG_CFLAGS="-O2 -s" 2535 CONFIG_CFAFLAGS="-nodebug" 2536 ;; 2537 "nolib" ) 2538 CONFIG_CFLAGS="" 2539 CONFIG_CFAFLAGS="" 2540 ;; 2541 esac 2542 2518 2543 2519 2544
Note: See TracChangeset
for help on using the changeset viewer.