simbit18 opened a new pull request, #14961:
URL: https://github.com/apache/nuttx/pull/14961
## Summary
fixed
/qemu-rv/qemu_rv_head.S:25:10: fatal error: nuttx/config.h: No such file or
directory
25 | #include <nuttx/config.h>
| ^~~~~~~~~~~~~~~~
compilation terminated.
added
```
# override the responsible file flag
if(CMAKE_GENERATOR MATCHES "Ninja")
set(CMAKE_C_RESPONSE_FILE_FLAG "$DEFINES $INCLUDES $FLAGS @")
set(CMAKE_CXX_RESPONSE_FILE_FLAG "$DEFINES $INCLUDES $FLAGS @")
set(CMAKE_ASM_RESPONSE_FILE_FLAG "$DEFINES $INCLUDES $FLAGS @")
endif()
```
same issue as arm https://github.com/apache/nuttx/pull/14892
## Impact
Impact on user: No changes to user-facing functionality
Impact on build: Build process remains the same
## Testing
local msys2
cmake -B build -DBOARD_CONFIG=rv-virt:nsh -GNinja
cmake -B build -DBOARD_CONFIG=rv-virt:nsh64 -GNinja

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]