Changeset 575a6e5 for libcfa/configure.ac
- Timestamp:
- Aug 9, 2018, 11:07:05 AM (5 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
-
libcfa/configure.ac
ra5121bf r575a6e5 5 5 AC_INIT([cfa-cc],[1.0.0.0],[cforall@plg.uwaterloo.ca]) 6 6 AC_CONFIG_AUX_DIR([./automake]) 7 AM_SILENT_RULES([yes]) 7 8 8 9 m4_include([../automake/cfa.m4]) 9 10 10 11 AM_INIT_AUTOMAKE([subdir-objects]) 12 13 # don't use the default CFLAGS as they unconditonnaly add -O2 14 : ${CFLAGS=""} 11 15 12 16 # Allow program name tansformation … … 23 27 AC_SUBST(CFACPP) 24 28 29 #============================================================================== 30 #Handle specific flags 25 31 case $ARCHITECTURE in 26 32 "x64" ) ARCH_FLAGS="-m64";; … … 30 36 31 37 AC_SUBST(ARCH_FLAGS) 38 39 case $CONFIGURATION in 40 "debug" ) 41 CONFIG_CFLAGS="-O0 -g" 42 CONFIG_CFAFLAGS="-debug" 43 ;; 44 "nodebug" ) 45 CONFIG_CFLAGS="-O2 -s" 46 CONFIG_CFAFLAGS="-nodebug" 47 ;; 48 "nolib" ) 49 CONFIG_CFLAGS="" 50 CONFIG_CFAFLAGS="" 51 ;; 52 esac 53 54 AC_SUBST(CONFIG_CFLAGS) 55 AC_SUBST(CONFIG_CFAFLAGS) 32 56 33 57 #==============================================================================
Note: See TracChangeset
for help on using the changeset viewer.