Bah! Missed PR no again!
[official-gcc.git] / libstdc++-v3 / scripts / testsuite_flags.in
blobb260ce4ea0d604d81600b5682ee75b3bda87a092
1 #!/bin/sh
4 # This script computes the various flags needed to run GNU C++ testsuites
5 # (compiler specific as well as library specific).
7 # Written by Benjamin Kosnik <bkoz@redhat.com>
8 # Gabriel Dos Reis <gdr@codesourcery.com>
11 # Print a message saying how this script is intended to be invoked
12 print_usage() {
13 cat <<EOF
14 Usage:
15 testsuite_flags --install-includes
16 --build-includes
17 --build-cxx
18 --install-cxx
19 --cxxflags
20 EOF
23 # Establish configure-generated directory structure.
24 BUILD_DIR=@glibcxx_builddir@
25 SRC_DIR=@glibcxx_srcdir@
26 PREFIX_DIR=@glibcxx_prefixdir@
27 query=$1
29 case ${query} in
30 --install-includes)
31 INCLUDES="-I${SRC_DIR}/testsuite"
32 echo ${INCLUDES}
34 --build-includes)
35 INCLUDES="-nostdinc++ @GLIBCXX_INCLUDES@ -I${SRC_DIR}/libsupc++
36 -I${SRC_DIR}/include/backward -I${SRC_DIR}/testsuite"
37 echo ${INCLUDES}
39 --install-cxx)
40 CXX=${PREFIX_DIR}/bin/g++
41 echo ${CXX}
43 --build-cxx)
44 PCHFLAGS="@glibcxx_PCHFLAGS@"
45 CXX_build="@CXX@ ${PCHFLAGS}"
46 CXX=`echo "$CXX_build" | sed 's,gcc/xgcc ,gcc/g++ ,'`
47 echo ${CXX}
49 --cxxflags)
50 CXXFLAGS_save="-g -O2"
51 CXXFLAGS_config='@SECTION_FLAGS@ @SECTION_LDFLAGS@ -fmessage-length=0
52 @EXTRA_CXX_FLAGS@ -DLOCALEDIR="@glibcxx_localedir@" '
53 echo ${CXXFLAGS_save} ${CXXFLAGS_config}
56 print_usage
58 esac
60 exit 0