Changeset ef7d253 for configure.ac
- Timestamp:
- Jun 14, 2016, 11:12:40 AM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 600b6c2
- Parents:
- 3dcd347a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r3dcd347a ref7d253 7 7 #AC_CONFIG_SRCDIR([src/main.cc]) 8 8 AC_CONFIG_HEADERS([config.h]) 9 AM_SILENT_RULES([no]) 9 10 10 11 if test "x${CXXFLAGS}" = "x"; then … … 19 20 # Installation paths 20 21 21 AC_ARG_WITH(backend-compiler, 22 [ --with-backend-compiler=PROGRAM PROGRAM that performs the final code compilation (must be gcc-compatible) ], 22 AC_ARG_WITH(backend-compiler, 23 [ --with-backend-compiler=PROGRAM PROGRAM that performs the final code compilation (must be gcc-compatible) ], 23 24 backendcompiler=$withval, backendcompiler="") 24 25 if test "x$backendcompiler" != x; then … … 38 39 else 39 40 cfa_prefix=${prefix} 40 fi 41 fi 41 42 AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.]) 42 43 AC_SUBST(CFA_PREFIX, ${cfa_prefix}) … … 46 47 else 47 48 cfa_incdir=${includedir} 48 fi 49 fi 49 50 AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.]) 50 51 AC_SUBST(CFA_INCDIR, ${cfa_incdir}) … … 54 55 else 55 56 cfa_bindir=${bindir} 56 fi 57 fi 57 58 AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.]) 58 59 AC_SUBST(CFA_BINDIR, ${cfa_bindir}) … … 62 63 else 63 64 cfa_libdir=${libdir} 64 fi 65 fi 65 66 AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.]) 66 67 AC_SUBST(CFA_LIBDIR, ${cfa_libdir}) … … 105 106 src/Makefile 106 107 src/examples/Makefile 108 src/tests/Makefile 107 109 src/libcfa/Makefile 108 110 ])
Note: See TracChangeset
for help on using the changeset viewer.