# -*- shell-script -*- # This gives the environment variables that need setting in order to # build PerfTools export ELFIO_DIR=/usr/local export GRAPHVIZ_DIR=/usr/local export PYTHON_INC=/usr/include/python2.3 # Not needed for building, but this gives some potentially needed run # time variables (if not working under SRT) export PYTHONPATH=`pwd`/python PATH=$PATH:`pwd`/bin if [ -z "$LD_LIBRARY_PATH" ] ; then export LD_LIBRARY_PATH=`pwd`/lib else LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/lib fi # test with optimization export ENV_CXXFLAGS="-O2 -Wno-inline"