Changeset 933f32f for libcfa/configure.ac
- Timestamp:
- May 24, 2019, 10:19:41 AM (6 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/configure.ac
r6a9d4b4 r933f32f 45 45 case $CONFIGURATION in 46 46 "debug" ) 47 CONFIG_CFLAGS="-O 0-g"47 CONFIG_CFLAGS="-Og -g" 48 48 CONFIG_CFAFLAGS="-debug" 49 49 CONFIG_BUILDLIB="yes" 50 50 ;; 51 51 "nodebug" ) 52 CONFIG_CFLAGS="-O 2-s"52 CONFIG_CFLAGS="-O3 -s" 53 53 CONFIG_CFAFLAGS="-nodebug" 54 54 CONFIG_BUILDLIB="yes" 55 55 ;; 56 56 "nolib" ) 57 CONFIG_CFLAGS="-O2 -s" 57 CONFIG_CFLAGS="-O3 -s" 58 CONFIG_CFAFLAGS="-nolib" 59 CONFIG_BUILDLIB="no" 60 ;; 61 "profile" ) 62 CONFIG_CFLAGS="-O3 -g -fno-omit-frame-pointer" 58 63 CONFIG_CFAFLAGS="-nodebug" 59 CONFIG_BUILDLIB=" no"64 CONFIG_BUILDLIB="yes" 60 65 ;; 61 66 *) … … 63 68 ;; 64 69 esac 70 71 CONFIG_CFAFLAGS="${CONFIG_CFAFLAGS} ${CFAFLAGS}" 65 72 66 73 AC_SUBST(CONFIG_CFLAGS)
Note:
See TracChangeset
for help on using the changeset viewer.