[tools 2/2] linkers: Print a proper 0x-hex number

Sebastian Huber sebastian.huber at embedded-brains.de
Mon Oct 16 11:47:46 UTC 2023


It is so easy in standard C++.
---
 linkers/rtems-syms.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/linkers/rtems-syms.cpp b/linkers/rtems-syms.cpp
index f6b207f..88ee970 100644
--- a/linkers/rtems-syms.cpp
+++ b/linkers/rtems-syms.cpp
@@ -305,7 +305,8 @@ output_sym::operator ()(const rld::symbols::symtab::value_type& value)
             val = sym.name ();
           } else {
             std::stringstream oss;
-            oss << std::hex << std::setfill ('0') << std::setw (8) << sym.value ();
+            oss << std::hex << std::showbase << std::internal <<
+              std::setfill ('0') << std::setw (10) << sym.value ();
             val = oss.str ();
           }
         }
-- 
2.35.3



More information about the devel mailing list