Skip to content

Commit 32badcf

Browse files
authored
Merge pull request #9136 from bnbarham/try-python-3.6
[stable/20240725] Support Amazon Linux 2
2 parents b202b60 + 0fc67cb commit 32badcf

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

clang/lib/Interpreter/CodeCompletion.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "clang/Frontend/ASTUnit.h"
2020
#include "clang/Frontend/CompilerInstance.h"
2121
#include "clang/Frontend/FrontendActions.h"
22-
#include "clang/Interpreter/Interpreter.h"
2322
#include "clang/Lex/PreprocessorOptions.h"
2423
#include "clang/Sema/CodeCompleteConsumer.h"
2524
#include "clang/Sema/CodeCompleteOptions.h"

clang/lib/Interpreter/IncrementalParser.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "clang/Interpreter/Interpreter.h"
2323
#include "clang/Parse/Parser.h"
2424
#include "clang/Sema/Sema.h"
25+
#include "llvm/ExecutionEngine/Orc/LLJIT.h"
2526
#include "llvm/Option/ArgList.h"
2627
#include "llvm/Support/CrashRecoveryContext.h"
2728
#include "llvm/Support/Error.h"

clang/lib/Interpreter/Value.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include "clang/AST/Type.h"
1717
#include "clang/Interpreter/Interpreter.h"
1818
#include "llvm/ADT/StringExtras.h"
19+
#include "llvm/ExecutionEngine/Orc/LLJIT.h"
1920
#include "llvm/Support/ErrorHandling.h"
2021
#include "llvm/Support/raw_os_ostream.h"
2122
#include <cassert>

llvm/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ set(LLVM_PROFDATA_FILE "" CACHE FILEPATH
947947

948948
if(LLVM_INCLUDE_TESTS)
949949
# All LLVM Python files should be compatible down to this minimum version.
950-
set(LLVM_MINIMUM_PYTHON_VERSION 3.8)
950+
set(LLVM_MINIMUM_PYTHON_VERSION 3.6)
951951
else()
952952
# FIXME: it is unknown if this is the actual minimum bound
953953
set(LLVM_MINIMUM_PYTHON_VERSION 3.0)

0 commit comments

Comments
 (0)