mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
* libguile/guile-snarf.in: skip -g* arguments to avoid failure on -ggdb3. Bug: https://bugs.gentoo.org/608190 Bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25803 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
124 lines
3.1 KiB
Bash
124 lines
3.1 KiB
Bash
#!/bin/sh
|
|
# Extract the initialization actions from source files.
|
|
#
|
|
# Copyright (C) 1996, 97, 98, 99, 2000, 2001, 2002, 2004, 2006, 2008,
|
|
# 2009, 2014 Free Software Foundation, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as
|
|
# published by the Free Software Foundation; either version 3, or (at
|
|
# your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this software; see the file COPYING.LESSER. If
|
|
# not, write to the Free Software Foundation, Inc., 51 Franklin
|
|
# Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
# Commentary:
|
|
|
|
# Usage: guile-snarf [-o OUTFILE] [CPP-ARGS ...]
|
|
|
|
# Initialization actions are extracted to OUTFILE or to standard
|
|
# output when no OUTFILE has been specified or when OUTFILE is "-".
|
|
# The C preprocessor is called with CPP-ARGS (which usually include a
|
|
# input file) and the output is filtered for the actions.
|
|
#
|
|
# If there are errors during processing, OUTFILE is deleted and the
|
|
# program exits with non-zero status.
|
|
#
|
|
# During snarfing, the pre-processor macro SCM_MAGIC_SNARFER is
|
|
# defined. You can use this to avoid including snarfer output files
|
|
# that don't yet exist by writing code like this:
|
|
#
|
|
# #ifndef SCM_MAGIC_SNARFER
|
|
# #include "foo.x"
|
|
# #endif
|
|
#
|
|
# If the environment variable CPP is set, use its value instead of the
|
|
# C pre-processor determined at Guile configure-time: "@CPP@".
|
|
|
|
# Code:
|
|
|
|
## funcs
|
|
|
|
modern_snarf () # writes stdout
|
|
{
|
|
## Apparently, AIX's preprocessor is unhappy if you try to #include an
|
|
## empty file.
|
|
echo "/* cpp arguments: $@ */" ;
|
|
${cpp} -DSCM_MAGIC_SNARF_INITS -DSCM_MAGIC_SNARFER "$@" > ${temp} && cpp_ok_p=true
|
|
sed -ne 's/ *\^ *\^ */\
|
|
/
|
|
s/.*\n//
|
|
t x
|
|
d
|
|
: x
|
|
s/ *\^ *: *\^ */;\
|
|
/
|
|
t y
|
|
N
|
|
s/\n\(#.*\)/ /
|
|
s/\n/ /
|
|
t x
|
|
: y
|
|
P
|
|
D' ${temp}
|
|
}
|
|
|
|
## main
|
|
|
|
# process command line
|
|
if [ x"$1" = x--help ] ; then
|
|
@AWK@ '/^#.Commentary:/,/^#.Code:/' $0 | grep -v Code: \
|
|
| sed -e 1,2d -e 's/^. *//g'
|
|
exit 0
|
|
fi
|
|
if [ x"$1" = x-o ]
|
|
then outfile="$2" ; shift ; shift ;
|
|
else outfile="-" ;
|
|
fi
|
|
|
|
# set vars and handler -- handle CPP override
|
|
cpp_ok_p=false
|
|
|
|
if [ x"$TMPDIR" = x ]; then TMPDIR="/tmp" ; else : ; fi
|
|
tempdir="$TMPDIR/guile-snarf.$$"
|
|
(umask 077 && mkdir $tempdir) || exit 1
|
|
temp="$tempdir/tmp"
|
|
|
|
if [ x"$CPP" = x ] ; then cpp="@CPP@" ; else cpp="$CPP" ; fi
|
|
|
|
trap "rm -rf $tempdir" 0 1 2 15
|
|
|
|
# filter out -g* flags from commandline
|
|
# as some flags like -ggdb3 cause CPP
|
|
|
|
cpp_args=""
|
|
for arg in "$@"
|
|
do
|
|
case "$arg" in
|
|
-g*) ;; # skip debug flag
|
|
*) cpp_args="$cpp_args $arg" ;;
|
|
esac
|
|
done
|
|
|
|
if [ ! "$outfile" = "-" ] ; then
|
|
modern_snarf $cpp_args > $outfile
|
|
else
|
|
modern_snarf $cpp_args
|
|
fi
|
|
|
|
# zonk outfile if errors occurred
|
|
if $cpp_ok_p ; then
|
|
exit 0
|
|
else
|
|
[ ! "$outfile" = "-" ] && rm -f $outfile
|
|
exit 1
|
|
fi
|
|
|
|
# guile-snarf ends here
|