Skip to content

Instantly share code, notes, and snippets.

@vincentchu
Created March 12, 2009 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vincentchu/78347 to your computer and use it in GitHub Desktop.
Save vincentchu/78347 to your computer and use it in GitHub Desktop.
#!/bin/bash
export CC='icc'
export CXX='icc'
export F77='ifort'
export CFLAGS='-O3'
export FFLAGS='-O3'
export CXXFLAGS=${CFLAGS}
export APBS_SRC=/home/vincentc/software/apbs-0.5.1/src/apbs-0.5.1-source
export APBS_PREFIX=/home/vincentc/software/apbs-0.5.1
cd ${APBS_SRC}
./configure --prefix=${APBS_PREFIX}
make all
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment