summaryrefslogtreecommitdiff
path: root/xmake/modules/utils
diff options
context:
space:
mode:
authorruki <[email protected]>2025-12-09 22:38:02 +0800
committerruki <[email protected]>2025-12-09 22:38:02 +0800
commit841d121decc17e2fe5eb6c7930e4ca4d805b28fd (patch)
treebddd8cc775c291269bc2d1717416f66f6a2714a7 /xmake/modules/utils
parent5931e48282914758fd7c4eeaf9ca05a16521692b (diff)
improve export_all
Diffstat (limited to 'xmake/modules/utils')
-rw-r--r--xmake/modules/utils/binary/readsyms.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/utils/binary/readsyms.lua b/xmake/modules/utils/binary/readsyms.lua
index 7225177e9..6aaa414d0 100644
--- a/xmake/modules/utils/binary/readsyms.lua
+++ b/xmake/modules/utils/binary/readsyms.lua
@@ -56,14 +56,14 @@ function dump(binaryfile)
-- calculate column widths
local type_width = math.max(max_type_len, 4)
local name_width = math.max(max_name_len, 4)
-
+
-- print header
print("")
print("Symbols:")
local header_format = " %-" .. type_width .. "s %s"
print(string.format(header_format, "TYPE", "NAME"))
print(string.rep("-", 80))
-
+
-- print symbols
local format_str = " %-" .. type_width .. "s %s"