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

Document SPL build options #12

Open
maxgerhardt opened this issue Aug 4, 2021 · 0 comments
Open

Document SPL build options #12

maxgerhardt opened this issue Aug 4, 2021 · 0 comments
Labels
documentation Improvements or additions to documentation spl Regarding SPL framework/integration

Comments

@maxgerhardt
Copy link
Member

The builder script has the option to enable or disable the discovery of built-in SPL libraries

should_include_libs = board.get("build.spl_libs", True)
should_include_libs = str(should_include_libs).lower() in ("1", "yes", "true")

A further work-in-progress is that linking against semihosting-enabled libraries can be done

activate_semihosting = board.get("debug.semihosting", False)
activate_semihosting = str(activate_semihosting).lower() in ("1", "yes", "true")

All of this needs to be documented and explained properly for end users.

@maxgerhardt maxgerhardt added documentation Improvements or additions to documentation spl Regarding SPL framework/integration labels Aug 4, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation spl Regarding SPL framework/integration
Projects
None yet
Development

No branches or pull requests

1 participant