diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-22 07:25:56 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-22 07:25:56 +0000 |
commit | 6e498b5c6d1b8cfd48ab771dde6bbe826b33c123 (patch) | |
tree | 079809e976535c249e715eda45a0d76439be9178 /gcc/cp/config-lang.in | |
parent | b0722fac381970a6231289a9a9fb772b43c127b4 (diff) | |
download | gcc-6e498b5c6d1b8cfd48ab771dde6bbe826b33c123.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7135 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/config-lang.in')
-rw-r--r-- | gcc/cp/config-lang.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gcc/cp/config-lang.in b/gcc/cp/config-lang.in new file mode 100644 index 00000000000..8290ac43bac --- /dev/null +++ b/gcc/cp/config-lang.in @@ -0,0 +1,34 @@ +# Top level configure fragment for GNU C++. +# Copyright (C) 1994 Free Software Foundation, Inc. + +#This file is part of GNU CC. + +#GNU CC 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. + +#GNU CC 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 General Public License for more details. + +#You should have received a copy of the GNU General Public License +#along with GNU CC; see the file COPYING. If not, write to +#the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +# Configure looks for the existence of this file to auto-config each language. +# We define several parameters used by configure: +# +# language - name of language as it would appear in $(LANGUAGES) +# compilers - value to add to $(COMPILERS) +# stagestuff - files to add to $(STAGESTUFF) +# diff_excludes - files to ignore when building diffs between two versions. + +language="c++" + +compilers="cc1plus" + +stagestuff="g++ g++-cross cc1plus" + +diff_excludes="-x cp/parse.c -x cp/parse.h" |