Skip to content
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

Added some docs for CA_HOST_DUMP_ASM and CA_HOST_DEFERRED_COMPILATION #505

Merged
merged 1 commit into from
Jul 23, 2024
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
10 changes: 10 additions & 0 deletions doc/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1125,6 +1125,16 @@ options without having to modify the source.
behave the same way as the `CA_HOST_TARGET_<arch>_CPU` and
`CA_HOST_TARGET_<arch>_FEATURES` CMake options and the same caveats about
`"native"` apply here.
* `CA_HOST_DEFERRED_COMPILATION`. This allows overriding of whether the `host`
device supports deferring compilation, often known as jitting. Setting to `0`
will disable deferred compilation, setting to `1` will enable it. If unset,
deferred compilation is enabled except on targets where it is known not to
work, such as RISC-V. Only available with debug support.
* `CA_HOST_DUMP_ASM`. This supports dumping of generated assembly. Requires a
target which disables deferred compilation, such as `RISC-V` or setting
`CA_HOST_DEFERRED_COMPILATION` to 0. This should be set to `1` or unset and
handling of other values is subject to change. Only available with debug
support.

## Debugging the LLVM compiler

Expand Down
Loading