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
clang bug in NDK 27 makes loop vectorization pass error. disable the warning (to about warnings as errors killing the build unnecessarily), but also disable loop vectorization options until NDK can be bumped. downgrade to c++20 to align with React Native constraints.
Copy file name to clipboardExpand all lines: scripts/compile/common.sh
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ process_switch_options "INTL"
86
86
87
87
# checks
88
88
err=false
89
-
if! [[ $ANDROID_API_FOR_ABI_32 ]];thenecho"set ANDROID_API_FOR_ABI_32 to the minimum supported Android platform version for arm and x86 (e.g. 16)"; err=true;fi
89
+
if[[ "${INCLUDE_32_BIT_ABIS:-0}"=="1" ]] &&! [[ $ANDROID_API_FOR_ABI_32 ]];thenecho"set ANDROID_API_FOR_ABI_32 to the minimum supported Android platform version for arm and x86 (e.g. 16)"; err=true;fi
90
90
if! [[ $ANDROID_API_FOR_ABI_64 ]];thenecho"set ANDROID_API_FOR_ABI_64 to the minimum supported Android platform version for arm64 and x86_64 (e.g. 21)"; err=true;fi
91
91
if! [[ $FLAVOR ]];thenecho"set FLAVOR to the name of the flavor"; err=true;fi
92
92
if! [[ $CROSS_COMPILE_PLATFORM ]];thenecho"set JSC_ARCH to one of {arm,arm64,x86,x86_64}"; err=true;fi
0 commit comments