Fixed building ACE for Android with uses_wchar=1#2416
Conversation
WalkthroughThe changes update the ACE library's Android logging implementation to ensure log messages are always passed as narrow character strings. Additionally, the release notes are updated to mention a fix for building ACE on Android with the Changes
Sequence Diagram(s)sequenceDiagram
participant ACE_Log as ACE Log_Msg_Android_Logcat
participant AndroidLog as __android_log_write
ACE_Log->>ACE_Log: Prepare log message (msg_data)
ACE_Log->>ACE_Log: Convert to char* using ACE_TEXT_ALWAYS_CHAR()
ACE_Log->>AndroidLog: Send log message (as char*)
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🧰 Additional context used🧠 Learnings (2)📓 Common learningsACE/ace/Log_Msg_Android_Logcat.cpp (3)⏰ Context from checks skipped due to timeout of 90000ms (20)
🔇 Additional comments (2)
✨ Finishing Touches
🧪 Generate Unit Tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
That's kinda funny. |
Fixes #2415
Summary by CodeRabbit
uses_wcharoption is enabled, ensuring proper logging output in this configuration.