Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Urban <bernhard.urban@xamarin.com>2018-11-20 01:31:14 +0300
committerLudovic Henry <luhenry@microsoft.com>2018-11-20 01:31:14 +0300
commitb63e5378e389f675640fba97999b82f3ca7a44c2 (patch)
tree72cf0ff46dd587c3625dd6db06b605c8c189cbb7
parentbb3ae37d71a0993a09abc59a0d8255c074dc885b (diff)
[2018-06][ios] fix path for llvm invocation (#11737)mono-5.16.0.221
Seems like this change got lost when backporting https://github.com/mono/mono/pull/10445. The other branches, 2018-06 and 2018-10, are fine. This should make the LLVM step on the iOS SDK lane green again. Context: https://github.com/mono/mono/pull/10440#issuecomment-439461353
-rw-r--r--sdks/ios/appbuilder/appbuilder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdks/ios/appbuilder/appbuilder.cs b/sdks/ios/appbuilder/appbuilder.cs
index 34282d717d0..cb320a5285c 100644
--- a/sdks/ios/appbuilder/appbuilder.cs
+++ b/sdks/ios/appbuilder/appbuilder.cs
@@ -161,7 +161,7 @@ public class AppBuilder
aot_args += ",soft-debug";
if (isllvm) {
cross_runtime_args = "--llvm";
- aot_args += ",llvm-path=$mono_sdkdir/ios-llvm64/bin,llvm-outfile=$llvm_outfile";
+ aot_args += ",llvm-path=$mono_sdkdir/llvm-llvm64/bin,llvm-outfile=$llvm_outfile";
}
Directory.CreateDirectory (builddir);