From: hp Date: Sat, 17 Mar 2007 19:08:50 +0000 (+0000) Subject: * uninclude: New utility, from Alexandre Oliva. X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=e3b2e07526c4661f70d2b76355fd7eae141b0082;ds=sidebyside * uninclude: New utility, from Alexandre Oliva. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123027 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 272d6341361..bbb70808947 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2007-03-17 Hans-Peter Nilsson + + * uninclude: New utility, from Alexandre Oliva. + 2007-02-26 Dominique Dhumieres * test_installed: Adjust to the move from g77 to gfortran. diff --git a/contrib/uninclude b/contrib/uninclude new file mode 100755 index 00000000000..fa39ea1f54b --- /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 2, 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+"$@"}