Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,10 @@ Change main.c to use OUTPUTTYPE instead of float

## Small changes
- HOTFIX: Deeploy subdirectories installed when installing Deeploy with pip install
- HOTFIX: Linking TEST_RECENT on MacOS


## Add RV32IMF Picolibc support for Siracusa platform

### Added
- Adds RV32IMF Picolib to the toolchain
- Adds RV32IMF Picolib to the toolchain
4 changes: 2 additions & 2 deletions cmake/Util.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ macro(link_compile_dump name)
POST_BUILD
COMMAND
mkdir -p ${CMAKE_SOURCE_DIR}/DeeployTest/TEST_RECENT &&
ln -sf -T ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/DeeployTest/TEST_RECENT/build &&
ln -sf -T ${GENERATED_SOURCE} ${CMAKE_SOURCE_DIR}/DeeployTest/TEST_RECENT/src
ln -sfn ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/DeeployTest/TEST_RECENT/build &&
ln -sfn ${GENERATED_SOURCE} ${CMAKE_SOURCE_DIR}/DeeployTest/TEST_RECENT/src
)
endmacro()

Expand Down
Loading