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
   
   
![riscv32](https://github.com/user-attachments/assets/5ac07d23-19f4-4348-acb8-6f9e87f8fcd1)
   
   
   


-- 
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]

Reply via email to