1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-28 23:22:38 +02:00

Compile an L-file only if UNW_LOCAL_ONLY surives past the include of <libunwind.h>.

(Logical change 1.75)
This commit is contained in:
mostang.com!davidm 2003-04-03 07:59:15 +00:00
parent 8d057cb800
commit 50e11fa8b2

View file

@ -1,7 +1,12 @@
#!/bin/sh
for gname in G*.c G*.cxx; do
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 "#ifndef UNW_REMOTE_ONLY\n#define UNW_LOCAL_ONLY\n\
#include \"$gname\"\n#endif" > $lname
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