From 554fd8c5195424bdbcabf5de30fdc183aba391bd Mon Sep 17 00:00:00 2001 From: upstream source tree Date: Sun, 15 Mar 2015 20:14:05 -0400 Subject: obtained gcc-4.6.4.tar.bz2 from upstream website; verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository. --- contrib/uninclude | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100755 contrib/uninclude (limited to 'contrib/uninclude') diff --git a/contrib/uninclude b/contrib/uninclude new file mode 100755 index 000000000..8ba28e5cf --- /dev/null +++ b/contrib/uninclude @@ -0,0 +1,52 @@ +#! /bin/sh + +# (C) 1998, 2007 Free Software Foundation +# Originally by Alexandre Oliva + +# This gawk/shell script is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as published +# by the Free Software Foundation; either version 3, or (at your option) +# any later version. + +# Given a preprocessed C/C++ code snippet, this script will replace any +# standard header files with an actual #include <...> directive. + +# Example: +# # 1 "test.c" +# # 1 "/usr/include/stdio.h" 1 3 +# +# # 1 "test.c" 2 +# +# main() { printf("Hello world!\n"); } + +# is replaced with +# # 1 "test.c" +# #include +# main() { printf("Hello world!\n"); } + + +# Header files whose pathnames contain any of the following patterns +# are considered as standard headers: usr/include, g++-include, +# include/g++, include/c++/, gcc-lib//include. + +gawk ${EXCLUDEPATT+-vexclude="$EXCLUDEPATT"} \ + ${INCLUDEPATT+-vinclude="$INCLUDEPATT"} ' +BEGIN { + skipping = 0; + cppline = "^# [0-9]+ \"[^\"]*/(usr/include|g\\+\\+-include|include/g\\+\\+|include/c\\+\\+/[^/]+|gcc-lib/[^\"]+/include|gcc/include)/([^\"]+)\"( [1-4])*$" +} +!skipping && $0 ~ cppline && +(exclude == "" || $3 !~ exclude) && (include == "" || $3 ~ include) { + skipping = 1; + printf "%s\n", "#include <" gensub(cppline, "\\2", "", $0) ">" + next; +} +skipping && /^# [0-9]+ / && $3 == lastincluded { + skipping = 0; + next; +} +!skipping && /^# [0-9]+ / { + lastincluded = $3; +} +!skipping { print } +' ${1+"$@"} -- cgit v1.2.3