Skip to content

Commit

Permalink
A single change in interpreter example to account for API update in L…
Browse files Browse the repository at this point in the history
…LVM 13.0.1
  • Loading branch information
light-tech committed Feb 27, 2022
1 parent b5601da commit 2ef6d9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Sample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@
ENABLE_PREVIEWS = YES;
HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = Sample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -347,7 +347,7 @@
ENABLE_PREVIEWS = YES;
HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = Sample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
2 changes: 1 addition & 1 deletion Sample/Interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace orc {

class SimpleJIT {
private:
ExecutionSession ES;
ExecutionSession ES { std::move(*SelfExecutorProcessControl::Create()) };
std::unique_ptr<TargetMachine> TM;
const DataLayout DL;
MangleAndInterner Mangle{ES, DL};
Expand Down

0 comments on commit 2ef6d9d

Please sign in to comment.