You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A "funny" thing happened when [attempting to build][0] 84d4230:
building the `armeabi` binaries resulted in a Segmentation fault
*within the compiler*:
../../doltlibtool --tag=CC ...
clang38: error: unable to execute command: Segmentation fault: 11
clang38: error: clang frontend command failed due to signal (use -v to see invocation)
...
Building mono for armeabi is *crashing the compiler*.
(This *might* have been introduced in 27a20f0; it's hard to say as I
aborted the 27a20f0 build in order to get the 84d4230 build done
sooner...)
Fix the compiler crash by upgrading the Android NDK toolchain from
r11c to r14b.
[0]: https://jenkins.mono-project.com/view/Xamarin.Android/job/xamarin-android/419/consoleText
<_NdkToolchainInclude="arm-linux-androideabi-clang"Condition="$(AndroidSupportedTargetJitAbisForConditionalChecks.Contains(':armeabi:')) Or $(AndroidSupportedTargetJitAbisForConditionalChecks.Contains(':armeabi-v7a:')) Or $(AndroidSupportedTargetAotAbisForConditionalChecks.Contains (':win-armeabi:'))">
117
-
<Platform>android-4</Platform>
117
+
<Platform>9</Platform>
118
118
<Arch>arm</Arch>
119
119
</_NdkToolchain>
120
120
<_NdkToolchainInclude="aarch64-linux-android-clang"Condition="$(AndroidSupportedTargetJitAbisForConditionalChecks.Contains(':arm64-v8a:')) Or $(AndroidSupportedTargetAotAbisForConditionalChecks.Contains (':win-arm64:'))">
121
-
<Platform>android-21</Platform>
121
+
<Platform>21</Platform>
122
122
<Arch>arm64</Arch>
123
123
</_NdkToolchain>
124
124
<_NdkToolchainInclude="x86-clang"Condition="$(AndroidSupportedTargetJitAbisForConditionalChecks.Contains(':x86:')) Or $(AndroidSupportedTargetAotAbisForConditionalChecks.Contains (':win-x86:'))">
125
-
<Platform>android-9</Platform>
125
+
<Platform>9</Platform>
126
126
<Arch>x86</Arch>
127
127
</_NdkToolchain>
128
128
<_NdkToolchainInclude="x86_64-clang"Condition="$(AndroidSupportedTargetJitAbisForConditionalChecks.Contains(':x86_64:')) Or $(AndroidSupportedTargetAotAbisForConditionalChecks.Contains (':win-x86_64:'))">
0 commit comments