Weird...I have taken this option from the cantera tutorial, available at http://www.cantera.org/docs/sphinx/html/compiling.html:
Your final SCons call might then look something like:
scons build env_vars=all CC=icc CXX=icpc F90=ifort F77=ifort blas_lapack_libs=mkl_rt blas_lapack_dir=$(MKLROOT)/lib/intel64
Intel(R) C++ Intel(R) 64 Compiler XE for applications running on Intel(R) 64, Version 15.0.3.187 Build 20150407
Copyright (C) 1985-2015 Intel Corporation. All rights reserved.
env_vars=all
to your .conf file (or calling scons with env_vars=all in the argument list).
This passed all your environment variables to scons (PATH, LD_LIBRARY_PATH, etc.) which does not happen by default
Nick
PYTHONPATH=~/.local/lib/python2.7/site-packages python -c "import cantera; print cantera.__version__"source /home/marcelomrd/Softwares/Binaries/cantera/bin/setup_canteraexport PYTHONPATH=$PYTHONPATH:/home/marcelomrd/Softwares/Binaries/cantera/lib/python2.7/site-packages
export PATH=/home/marcelomrd/Softwares/Binaries/cantera/bin:$PATHexport PATH=~/.local/bin:$PATH...