You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a project in Keil Studio/MDK6, that is located in a path that contains a dollar sign '$', for example building the project fails:
error csolution: malformed access sequence: '/$test/Blinky_FRDM-K32L3A6
error csolution: processing context 'FRDM-K32L3A6.Debug+FRDM-K32L3A6' failed
Completed: cbuild failed with exit code 1`
Maybe the dollar sign collides with [Access Sequences](https://github.com/Open-CMSIS-Pack/cmsis-toolbox/blob/main/docs/YML-Input-Format.md).
### Expected Behavior
Despite the the dollar sign in the path, the project could still be usable, as the dollar sign is no reserved character in file paths.
### Steps To Reproduce
Simply put a project into a path that contains a dollar sign and try to use it.
### Affected tools
- [ ] cbuild
- [ ] cbuild2cmake
- [ ] cpackget
- [x] csolution
- [ ] packchk
- [ ] svdconv
### Affected operating systems
- [x] all
### Environment
CLI and VS Code CMSIS Solution extension
The text was updated successfully, but these errors were encountered:
High level investigation shows, that this error is related to the output path. If the output is redirected (-O) to a path where the resulting absolute path does not contain $ the command is successful.
Workaround:
a) do not use $ in your directory names
b) use -O to redirect all output to a directory without $
jkrech
changed the title
csolutuion based project in folder containing '$' (dollar) sign not working
csolution based project in folder containing '$' (dollar) sign not working
Feb 21, 2025
jkrech
changed the title
csolution based project in folder containing '$' (dollar) sign not working
[csolution] CMSIS Solution project fails to be processed when it is located in a directory containing $ (dollar) character
Feb 25, 2025
Is there an existing issue for this?
Current Behavior
When using a project in Keil Studio/MDK6, that is located in a path that contains a dollar sign '$', for example building the project fails:
The text was updated successfully, but these errors were encountered: