Changeset 933f32f for libcfa/configure


Ignore:
Timestamp:
May 24, 2019, 10:19:41 AM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
d908563
Parents:
6a9d4b4 (diff), 292642a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into cleanup-dtors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/configure

    r6a9d4b4 r933f32f  
    23822382
    23832383
     2384# http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_check_compile_flag.m4
     2385
    23842386
    23852387am__api_version='1.15'
     
    29572959case $CONFIGURATION in
    29582960        "debug"   )
    2959                 CONFIG_CFLAGS="-O0 -g"
     2961                CONFIG_CFLAGS="-Og -g"
    29602962                CONFIG_CFAFLAGS="-debug"
    29612963                CONFIG_BUILDLIB="yes"
    29622964        ;;
    29632965        "nodebug" )
    2964                 CONFIG_CFLAGS="-O2 -s"
     2966                CONFIG_CFLAGS="-O3 -s"
    29652967                CONFIG_CFAFLAGS="-nodebug"
    29662968                CONFIG_BUILDLIB="yes"
    29672969        ;;
    29682970        "nolib"   )
    2969                 CONFIG_CFLAGS="-O2 -s"
     2971                CONFIG_CFLAGS="-O3 -s"
     2972                CONFIG_CFAFLAGS="-nolib"
     2973                CONFIG_BUILDLIB="no"
     2974        ;;
     2975        "profile" )
     2976                CONFIG_CFLAGS="-O3 -g -fno-omit-frame-pointer"
    29702977                CONFIG_CFAFLAGS="-nodebug"
    2971                 CONFIG_BUILDLIB="no"
     2978                CONFIG_BUILDLIB="yes"
    29722979        ;;
    29732980        *)
     
    29752982        ;;
    29762983esac
     2984
     2985CONFIG_CFAFLAGS="${CONFIG_CFAFLAGS} ${CFAFLAGS}"
    29772986
    29782987
Note: See TracChangeset for help on using the changeset viewer.