1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-07-01 05:31:43 +02:00
libunwind-eh_elf/scripts/make-L-files
2003-04-03 07:59:15 +00:00

13 lines
315 B
Bash

#!/bin/sh
for gname in `ls G*.c G*.cxx 2>/dev/null`; do
lname="L$(expr $gname : '.\(.*\)')"
bk edit $lname >/dev/null 2>&1
echo -e "\
#define UNW_LOCAL_ONLY\n\
#include <libunwind.h>\n\
#if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY)\n\
#include \"$gname\"\n\
#endif" > $lname
echo created $lname
done