diff options
author | Magnus Lång <[email protected]> | 2017-02-19 10:50:10 +0100 |
---|---|---|
committer | Magnus Lång <[email protected]> | 2017-02-19 10:50:10 +0100 |
commit | 5268c1fecbfc4ad604f619db1f71948b506b0788 (patch) | |
tree | 62c3114a3109bdcae3004b15af0d691cccfdb5bd /lib/hipe/main | |
parent | b1ada5d80a5ed7a1e069cdd8bff7545e09ca5e4c (diff) | |
download | otp-5268c1fecbfc4ad604f619db1f71948b506b0788.tar.gz otp-5268c1fecbfc4ad604f619db1f71948b506b0788.tar.bz2 otp-5268c1fecbfc4ad604f619db1f71948b506b0788.zip |
ErLLVM: Demand LLVM 3.9 or greater
Diffstat (limited to 'lib/hipe/main')
-rw-r--r-- | lib/hipe/main/hipe.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hipe/main/hipe.erl b/lib/hipe/main/hipe.erl index 06facae5c1..fff397b060 100644 --- a/lib/hipe/main/hipe.erl +++ b/lib/hipe/main/hipe.erl @@ -655,7 +655,7 @@ run_compiler_1(Name, DisasmFun, IcodeFun, Options) -> case proplists:get_bool(to_llvm, Opts0) andalso not llvm_support_available() of true -> - ?error_msg("No LLVM version 3.4 or greater " + ?error_msg("No LLVM version 3.9 or greater " "found in $PATH; aborting " "native code compilation.\n", []), ?EXIT(cant_find_required_llvm_version); @@ -1585,7 +1585,7 @@ check_options(Opts) -> -spec llvm_support_available() -> boolean(). llvm_support_available() -> - get_llvm_version() >= {3,4}. + get_llvm_version() >= {3,9}. -type llvm_version() :: {Major :: integer(), Minor :: integer()}. |