Commit 1506469a authored by Dominik Charousset's avatar Dominik Charousset

Add Charm++ compiler option to configure script

parent 064d0ce0
...@@ -70,8 +70,9 @@ Usage: $0 [OPTION]... [VAR=VALUE]... ...@@ -70,8 +70,9 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
CXXFLAGS C++ compiler flags CXXFLAGS C++ compiler flags
Benchmark Suite Options: Benchmark Suite Options:
--with-scalac=FILE path to scalac executable --with-scalac=FILE path to Scala compiler
--with-erlc=FILE path to erlc executable --with-erlc=FILE path to Erlang compiler
--with-charmc=FILE path to Charm++ compiler
" "
...@@ -290,6 +291,9 @@ while [ $# -ne 0 ]; do ...@@ -290,6 +291,9 @@ while [ $# -ne 0 ]; do
--with-erlc=*) --with-erlc=*)
append_cache_entry CAF_ERLANG_COMPILER FILEPATH "$optarg" append_cache_entry CAF_ERLANG_COMPILER FILEPATH "$optarg"
;; ;;
--with-charmc=*)
append_cache_entry CAF_CHARM_COMPILER FILEPATH "$optarg"
;;
--no-nexus) --no-nexus)
append_cache_entry CAF_NO_NEXUS BOOL yes append_cache_entry CAF_NO_NEXUS BOOL yes
;; ;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment