]> gcc.gnu.org Git - gcc.git/commitdiff
exgettext: Look for .cc files.
authorIan Lance Taylor <iant@google.com>
Wed, 10 Nov 2010 00:39:08 +0000 (00:39 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Wed, 10 Nov 2010 00:39:08 +0000 (00:39 +0000)
* exgettext: Look for .cc files.  Look in subdirectories of
language subdirectories.
* EXCLUDES: Update comment.

From-SVN: r166515

gcc/po/ChangeLog
gcc/po/EXCLUDES
gcc/po/exgettext

index a6d6da08e4b68de165d6f4428c5e9cc705d787b8..b0a05dcfcad715771842b3f2773bf0bb294ba0fb 100644 (file)
@@ -1,3 +1,9 @@
+2010-11-09  Ian Lance Taylor  <iant@google.com>
+
+       * exgettext: Look for .cc files.  Look in subdirectories of
+       language subdirectories.
+       * EXCLUDES: Update comment.
+
 2010-10-22  Joseph Myers  <joseph@codesourcery.com>
 
        * gcc.pot: Regenerate.
index e2ba80abcf37be27001048fe0e02c44efbd228b5..b7874d170dfa5faddc6bbe5289935bad46bed53c 100644 (file)
@@ -18,8 +18,8 @@
 
 # This file lists all the sources which should *not* be scanned for
 # strings to translate.  Only the first word on each line is used; the
-# rest is ignored.  Only files with an extension of .c or .h or .def are
-# examined to begin with.
+# rest is ignored.  Only files with an extension of .c, .cc, .h, or
+# .def are examined to begin with.
 
 #   These files are part of libgcc, or target headers provided by gcc.
 config/darwin-crt2.c
index 4926bf357960958df6273c68fd4760fb4d6f2b1f..f422c1e1acb39d2392c4d582134ca1fac2dcd0d9 100644 (file)
@@ -63,14 +63,21 @@ kopt=$pwd/$T/keyword-options
 kopt2=$pwd/$T/keyword2-options
 emsg=$pwd/$T/emsgids.c
 posr=$pwd/$T/po-sources
+posrcxx=$pwd/$T/po-cxx-sources
 pottmp1=$pwd/$T/tmp1.pot
 pottmp2=$pwd/$T/tmp2.pot
+pottmp3=$pwd/$T/tmp3.pot
 pottmp=$pwd/$T/tmp.pot
 
-# Locate files to scan, and generate the list.  All .c, .h, and .def files
-# in $srcdir are examined, likewise $srcdir/config and $srcdir/config/*
-# (directories).  Also, all subdirectories of $srcdir that contain a
-# config-lang.in.  Exclusions come from $srcdir/po/EXCLUDE.
+# Locate files to scan.  We scan the following directories:
+#  $srcdir
+#  $srcdir/c-family
+#  $srcdir/config
+#  $srcdir/config/*
+#  all subdirectories of $srcdir containing a config-lang.in file, and
+#    all subdirectories of those directories.
+# Within those directories, we examine all .c, .cc, .h, and .def files.
+# However, any files listed in $srcdir/po/EXCLUDE are not examined.
 #
 # Then generate keyword options for xgettext, by scanning for declarations
 # of functions whose parameter names end in "msgid".
@@ -83,14 +90,15 @@ pottmp=$pwd/$T/tmp.pot
 echo "scanning for keywords, %e and %n strings..." >&2
 
 ( cd $srcdir
-  lang_subdirs=`echo */config-lang.in */*/config-lang.in | sed -e 's|config-lang\.in||g'`
-  { for dir in "" c-family/ config/ config/*/ $lang_subdirs
-    do  for glob in '*.c' '*.h' '*.def'
+  lang_subdirs=`echo */config-lang.in */*/config-lang.in | sed -e 's|/config-lang\.in||g'`
+  { for dir in "" c-family/ config/ config/*/ \
+      `find $lang_subdirs -type d -print | fgrep -v .svn | sort | sed -e 's|$|/|'`
+    do  for glob in '*.c' '*.cc' '*.h' '*.def'
         do  eval echo $dir$glob
         done
     done;
   } | tr ' ' "$nl" | grep -v '\*' |
-  $AWK -v excl=po/EXCLUDES -v posr=$posr -v kopt=$kopt -v kopt2=$kopt2 -v emsg=$emsg '
+  $AWK -v excl=po/EXCLUDES -v posr=$posr -v posrcxx=$posrcxx -v kopt=$kopt -v kopt2=$kopt2 -v emsg=$emsg '
 function keyword_option(line) {
     paren_index = index(line, "(")
     name = substr(line, 1, paren_index - 1)
@@ -178,7 +186,11 @@ BEGIN {
 }
 
 { if (!($0 in excludes)) {
-    print > posr
+    if ($0 ~ /.cc$/) {
+      print > posrcxx
+    } else {
+      print > posr
+    }
     files[NR] = $0
   }
 }
@@ -256,20 +268,29 @@ echo "scanning option files..." >&2
     }
   }') >> $emsg
 
-# Run the xgettext command, with temporary added as a file to scan.
+# Run the xgettext commands, with temporary added as a file to scan.
 echo "running xgettext..." >&2
 $xgettext --default-domain=$package --directory=$srcdir \
          --add-comments `cat $kopt` --files-from=$posr \
          --copyright-holder="Free Software Foundation, Inc." \
          --msgid-bugs-address="http://gcc.gnu.org/bugs.html" \
          --language=c -o $pottmp1
+if test -s $posrcxx; then
+  $xgettext --default-domain=$package --directory=$srcdir \
+           --add-comments `cat $kopt` --files-from=$posrcxx \
+           --copyright-holder="Free Software Foundation, Inc." \
+           --msgid-bugs-address="http://gcc.gnu.org/bugs.html" \
+           --language=c++ -o $pottmp2
+else
+  echo > $pottmp2
+fi
 $xgettext --default-domain=$package --directory=$srcdir \
          --add-comments --keyword= `cat $kopt2` --files-from=$posr \
          --copyright-holder="Free Software Foundation, Inc." \
          --msgid-bugs-address="http://gcc.gnu.org/bugs.html" \
-         --language=GCC-source -o $pottmp2
+         --language=GCC-source -o $pottmp3
 $xgettext --default-domain=$package \
-         --add-comments $pottmp1 $pottmp2 \
+         --add-comments $pottmp1 $pottmp2 $pottmp3 \
          --copyright-holder="Free Software Foundation, Inc." \
          --msgid-bugs-address="http://gcc.gnu.org/bugs.html" \
          --language=PO -o $pottmp
This page took 0.064498 seconds and 5 git commands to generate.