aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorBoris-Chengbiao Zhou <bobo1239@web.de>2017-10-06 15:46:21 +0200
committertgingold <tgingold@users.noreply.github.com>2017-10-06 20:45:31 +0200
commitf605a111d8fde53762c239f130894ddcd4f0b542 (patch)
tree4a63f8fc7f74256db0b6dde7a9140769816f46bb /configure
parent0921cd5b27d22deb2735a2668c0dd015c64d9513 (diff)
downloadghdl-f605a111d8fde53762c239f130894ddcd4f0b542.tar.gz
ghdl-f605a111d8fde53762c239f130894ddcd4f0b542.tar.bz2
ghdl-f605a111d8fde53762c239f130894ddcd4f0b542.zip
Support LLVM 5.0
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 71eba390d..4c7f29c60 100755
--- a/configure
+++ b/configure
@@ -216,7 +216,8 @@ if test $backend = llvm; then
llvm_be=llvm-nodebug
# Tested with llvm 3.5, so assume 3.6, 3.7 and 3.8
elif check_version 3.9 $llvm_version ||
- check_version 4.0 $llvm_version; then
+ check_version 4.0 $llvm_version ||
+ check_version 5.0 $llvm_version; then
echo "Debugging is not enabled with llvm $llvm_version"
llvm_be=llvm4-nodebug
else