2001-05-12 19:45:46 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#
|
|
|
|
# This script computes the various flags needed to run GNU C++ testsuites
|
|
|
|
# (compiler specific as well as library specific).
|
|
|
|
#
|
|
|
|
# Written by Benjamin Kosnik <bkoz@redhat.com>
|
|
|
|
# Gabriel Dos Reis <gdr@codesourcery.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
# Print a message saying how this script is intended to be invoked
|
|
|
|
print_usage() {
|
|
|
|
cat <<EOF
|
|
|
|
Usage:
|
2001-05-14 03:15:36 +02:00
|
|
|
testsuite_flags --install-includes
|
|
|
|
--build-includes
|
|
|
|
--build-cxx
|
|
|
|
--install-cxx
|
|
|
|
--cxxflags
|
2001-05-12 19:45:46 +02:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
# Establish configure-generated directory structure.
|
|
|
|
BUILD_DIR=@glibcpp_builddir@
|
|
|
|
SRC_DIR=@glibcpp_srcdir@
|
|
|
|
PREFIX_DIR=@glibcpp_prefixdir@
|
|
|
|
query=$1
|
|
|
|
|
|
|
|
case ${query} in
|
|
|
|
--install-includes)
|
2001-09-06 00:38:06 +02:00
|
|
|
INCLUDES="-I${SRC_DIR}/testsuite"
|
2001-05-12 19:45:46 +02:00
|
|
|
echo ${INCLUDES}
|
|
|
|
;;
|
|
|
|
--build-includes)
|
2001-07-13 18:47:56 +02:00
|
|
|
INCLUDES="-nostdinc++ @GLIBCPP_INCLUDES@
|
2001-05-12 19:45:46 +02:00
|
|
|
-I${SRC_DIR}/libsupc++ -I${SRC_DIR}/libio
|
2001-08-24 00:35:52 +02:00
|
|
|
-I${SRC_DIR}/include/backward
|
2001-09-06 00:38:06 +02:00
|
|
|
-I${SRC_DIR}/testsuite"
|
2001-05-12 19:45:46 +02:00
|
|
|
echo ${INCLUDES}
|
|
|
|
;;
|
|
|
|
--install-cxx)
|
|
|
|
CXX=${PREFIX_DIR}/bin/g++
|
|
|
|
echo ${CXX}
|
|
|
|
;;
|
|
|
|
--build-cxx)
|
2003-03-14 23:16:06 +01:00
|
|
|
PCHFLAGS="-Winvalid-pch -include ${BUILD_DIR}/include/stdc++.h"
|
2003-03-14 23:17:26 +01:00
|
|
|
CC_build="@glibcpp_CXX@"
|
2001-05-12 19:45:46 +02:00
|
|
|
CXX=`echo $CC_build | sed 's/xgcc/g++/g'`
|
|
|
|
echo ${CXX}
|
|
|
|
;;
|
|
|
|
--cxxflags)
|
2003-03-14 23:16:06 +01:00
|
|
|
CXXFLAGS_save="-g -O2"
|
|
|
|
CXXFLAGS_config='@SECTION_FLAGS@ @SECTION_LDFLAGS@ -fmessage-length=0
|
|
|
|
@EXTRA_CXX_FLAGS@ -DLOCALEDIR="@glibcpp_localedir@" '
|
|
|
|
echo ${CXXFLAGS_save} ${CXXFLAGS_config}
|
2001-05-12 19:45:46 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
print_usage
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|