We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2987cc6 commit 33db46dCopy full SHA for 33db46d
clang/unittests/Interpreter/InterpreterTest.cpp
@@ -88,7 +88,8 @@ static std::string getOrcRuntimePath() {
88
if (SystemTriple.isOSDarwin()) {
89
llvm::sys::path::append(RuntimePath, "darwin", "liborc_rt_osx.a");
90
} else if (SystemTriple.isOSLinux()) {
91
- llvm::sys::path::append(RuntimePath, "x86_64-unknown-linux-gnu", "liborc_rt.a");
+ llvm::sys::path::append(RuntimePath, "x86_64-unknown-linux-gnu",
92
+ "liborc_rt.a");
93
} else {
94
// Add other platforms as needed
95
llvm::sys::path::append(RuntimePath, "liborc_rt.a");
0 commit comments