-
Notifications
You must be signed in to change notification settings - Fork 20
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
Include xs1.h in rtos_swmem.c and update documentation #213
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes bug observed :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy for these changes to happen but as discussed a separate issue should be raised to cover the documentation changes.
CMake question nonwithstanding, happy to approve
@@ -41,6 +41,6 @@ for ((i = 0; i < ${#applications[@]}; i += 1)); do | |||
|
|||
(cd ${path}; rm -rf build_${board}) | |||
(cd ${path}; mkdir -p build_${board}) | |||
(cd ${path}/build_${board}; log_errors cmake ../ -G "$CI_CMAKE_GENERATOR" -DCMAKE_TOOLCHAIN_FILE=${toolchain_file} -DBOARD=${board} -DFRAMEWORK_RTOS_TESTS=ON; log_errors $CI_BUILD_TOOL ${make_target} $CI_BUILD_TOOL_ARGS) | |||
(cd ${path}/build_${board}; log_errors cmake ../ -G "$CI_CMAKE_GENERATOR" --toolchain=${toolchain_file} -DBOARD=${board} -DFRAMEWORK_RTOS_TESTS=ON; log_errors $CI_BUILD_TOOL ${make_target} $CI_BUILD_TOOL_ARGS) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sets minimum CMake version at 3.21, is this correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is the default minimum version in the CMakeLists.txt file. Is there any issue with that?
Fix tested with application https://github.com/ACascarino/tracealyzer_burn_trial/tree/broken.
Closes https://xmosjira.atlassian.net/browse/AP-94
Closes https://xmosjira.atlassian.net/browse/AP-224