Skip to content

typo: alows -> allows #2124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cross-platform/clang-android-prop-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Enable C++ Exceptions | Specifies the model of exception handling to be used by
Enable Function-Level Linking | Allows the compiler to package individual functions in the form of packaged functions (COMDATs). Required for edit and continue to work. (ffunction-sections).
Enable Data-Level Linking | Enables linker optimizations to remove unused data by emitting each data item in a separate section.
Enable Advanced SIMD(Neon) | Enables code generation for NEON floating point hardware. This is applicable for arm architecture only.
Floating-point ABI | Selection option to choose the floating point ABI. | **Soft** - 'Soft' causes compiler to generate output containing library calls for floating-point operations.<br>**SoftFP** - 'SoftFP' allows the generation of code using hardware floating-point instructions, but still uses the soft-float calling conventions.<br>**Hard** - 'Hard' alows generation of floating-point instructions and uses FPU-specific calling conventions.<br>
Floating-point ABI | Selection option to choose the floating point ABI. | **Soft** - 'Soft' causes compiler to generate output containing library calls for floating-point operations.<br>**SoftFP** - 'SoftFP' allows the generation of code using hardware floating-point instructions, but still uses the soft-float calling conventions.<br>**Hard** - 'Hard' allows generation of floating-point instructions and uses FPU-specific calling conventions.<br>
Security Check | The Security Check helps detect stack-buffer over-runs, a common attempted attack upon a program's security. (fstack-protector). | **Disable Security Check** - Disable Security Check.<br>**Enable Security Check** - Enable Security Check. (fstack-protector)<br>
Position Independent Code | Generate Position Independent Code (PIC) for use in a shared library.
Use Short Enums | Enum type uses only as many bytes required by input set of possible values.
Expand Down