mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-21 23:27:39 +01:00
8 lines
212 B
Bash
8 lines
212 B
Bash
#!/bin/sh
|
|
set -x
|
|
for gname in G*.c; do
|
|
lname="L$(expr $gname : '.\(.*\)')"
|
|
bk edit $lname >/dev/null 2>&1
|
|
echo -e "#ifndef UNW_REMOTE_ONLY\n#define UNW_LOCAL_ONLY\n\
|
|
#include \"$gname\"\n#endif" > $lname
|
|
done
|