Skip to content

Commit

Permalink
Cmake FindLibLLDB module: Add detection for llvb-3.9, which is in deb…
Browse files Browse the repository at this point in the history
…ian stretch; and also 3.10 for future use
  • Loading branch information
dghart committed Feb 10, 2017
1 parent b26d320 commit 027bdc6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cmake/Modules/FindLibLLDB.cmake
Expand Up @@ -6,6 +6,8 @@ if (UNIX)
HINTS
/usr/lib
/usr/local/lib
/usr/lib/llvm-3.10/lib
/usr/lib/llvm-3.9/lib
/usr/lib/llvm-3.8/lib
#/usr/lib/llvm-3.7/lib
/usr/lib/llvm-3.6/lib
Expand All @@ -19,12 +21,16 @@ if (UNIX)

find_path(LIBLLDB_INCLUDE_T NAMES lldb/API/SBDebugger.h
HINTS
/usr/lib/llvm-3.10/include
/usr/lib/llvm-3.9/include
/usr/lib/llvm-3.8/include
#/usr/lib/llvm-3.7/include
/usr/lib/llvm-3.6/include
/usr/lib/llvm-3.5/include
/usr/lib/llvm-3.4/include
/usr/lib/llvm-3.3/include
/usr/include/llvm-3.10
/usr/include/llvm-3.9
/usr/include/llvm-3.8
#/usr/include/llvm-3.7
/usr/include/llvm-3.6
Expand Down

0 comments on commit 027bdc6

Please sign in to comment.