blob: ae0a5da428bee907e7ef21dbb3e73acecc9f7faa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- build/toolchain/gcc_solink_wrapper.py.orig 2025-05-07 06:48:23 UTC
+++ build/toolchain/gcc_solink_wrapper.py
@@ -39,7 +39,7 @@ def CollectDynSym(args):
"""Replaces: nm --format=posix -g -D -p $sofile | cut -f1-2 -d' '"""
toc = ''
nm = subprocess.Popen(wrapper_utils.CommandToRun(
- [args.nm, '--format=posix', '-g', '-D', '-p', args.sofile]),
+ [args.nm, '-g', '-D', '-p', args.sofile]),
stdout=subprocess.PIPE,
bufsize=-1,
universal_newlines=True)
|