mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
67f0c0d5f0
Instead we should just generate kernel.map in such a way that it already contains demangled symbols.
12 lines
289 B
Bash
12 lines
289 B
Bash
#!/bin/sh
|
|
tmp=$(mktemp)
|
|
if [ -f Kernel32 ]; then
|
|
kernel_binary=Kernel32
|
|
else
|
|
kernel_binary=Kernel64
|
|
fi
|
|
nm -n $kernel_binary | awk '{ if ($2 != "a") print; }' | uniq > "$tmp"
|
|
printf "%08x\n" "$(wc -l "$tmp" | cut -f1 -d' ')" > kernel.map
|
|
c++filt < "$tmp" >> kernel.map
|
|
rm -f "$tmp"
|