Skip to content

Commit 2111268

Browse files
[Orc] Make JITLink default in LLJIT for ARM ELF-based systems
1 parent b1ff6fc commit 2111268

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

llvm/lib/ExecutionEngine/Orc/LLJIT.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,9 @@ Error LLJITBuilderState::prepareForConstruction() {
734734
case Triple::aarch64:
735735
UseJITLink = !TT.isOSBinFormatCOFF();
736736
break;
737+
case Triple::arm:
738+
UseJITLink = !TT.isOSBinFormatCOFF();
739+
break;
737740
case Triple::x86_64:
738741
UseJITLink = !TT.isOSBinFormatCOFF();
739742
break;

0 commit comments

Comments
 (0)