diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-03-07 18:19:47 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-03-07 18:19:47 +0000 |
commit | 0ed86fe04323c7b207c1892b5162c58b74739a73 (patch) | |
tree | 40c1ca34bab8983a1545f6b89f5208edcae02511 | |
parent | d1108222fd7b49d660fa63868cd2428fa1d49c17 (diff) |
Prefer to use ocamlc.opt to ocamlc and soforth.
These natively compiled versions are faster.
Patch by Erick Tryzelaar!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48007 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | autoconf/configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index a966a09618..b6f23a381c 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -589,9 +589,9 @@ AC_PATH_PROG(POD2MAN, [pod2man]) AC_PATH_PROG(RUNTEST, [runtest]) DJ_AC_PATH_TCLSH AC_PATH_PROG(ZIP, [zip]) -AC_PATH_PROG(OCAMLC, [ocamlc]) -AC_PATH_PROG(OCAMLOPT, [ocamlopt]) -AC_PATH_PROG(OCAMLDEP, [ocamldep]) +AC_PATH_PROGS(OCAMLC, [ocamlc.opt ocamlc]) +AC_PATH_PROGS(OCAMLOPT, [ocamlopt.opt ocamlopt]) +AC_PATH_PROGS(OCAMLDEP, [ocamldep.opt ocamldep]) dnl Determine if the linker supports the -R option. AC_LINK_USE_R |