Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view autoconf/m4/config_project.m4 @ 116:a609e5c42ecc
change from CGF to this
author | mir3636 |
---|---|
date | Mon, 08 Aug 2016 19:47:00 +0900 |
parents | 95c75e76d11b |
children |
line wrap: on
line source
# # Provide the arguments and other processing needed for an LLVM project # AC_DEFUN([LLVM_CONFIG_PROJECT], [AC_ARG_WITH([llvmsrc], AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]), [llvm_src="$withval"],[llvm_src="]$1["]) AC_SUBST(LLVM_SRC,$llvm_src) AC_ARG_WITH([llvmobj], AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]), [llvm_obj="$withval"],[llvm_obj="]$2["]) AC_SUBST(LLVM_OBJ,$llvm_obj) AC_CONFIG_COMMANDS([setup],,[llvm_src="${LLVM_SRC}"]) ])